Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bpholt/puppet-hgssh

Puppet module for managing SSH access to Mercurial libraries using the hg-ssh script
https://github.com/bpholt/puppet-hgssh

Last synced: 24 days ago
JSON representation

Puppet module for managing SSH access to Mercurial libraries using the hg-ssh script

Awesome Lists containing this project

README

        

puppet-hg-ssh
=============

Puppet module for managing SSH access to Mercurial libraries using the hg-ssh script

Example:
--------

hgssh::user { 'user1':
name => 'Some User',
repositories => 'group/repo1 group/repo2',
key => 'thePublicKeyItself',
email => '[email protected]',
}

will result in the following being added to `~hg/.ssh/authorized_keys`:

command="hg-ssh sgroup/repo1 group/repo2" ssh-rsa thePublicKeyItself Some User