Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/bpholt/puppet-hgssh
- Owner: bpholt
- License: other
- Created: 2013-03-21T18:39:26.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-03-23T23:21:13.000Z (over 11 years ago)
- Last Synced: 2023-03-22T16:36:39.440Z (over 1 year ago)
- Language: Puppet
- Size: 125 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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