Version information
released May 31st 2013
Start using this module
Add this module to your Puppetfile:
mod 'blom-rssh', '0.0.3'
Learn more about managing modules with a PuppetfileDocumentation
blom/rssh — version 0.0.3 May 31st 2013
puppet-rssh
Puppet module for rssh.
Installation
puppet module install blom/rssh
Usage
class { 'rssh':
}
Takes the following optional attributes:
package
: Package name (default:rssh
).config_file
: Configuration file path (default:/etc/rssh.conf
).config_mode
: Configuration file mode (default:0644
).allow
: Allowed commands (default[]
).umask
: umask value for scp and sftp (default:022
).logfacility
: Syslog facility that rssh logs to (default:LOG_USER
).chrootpath
:chroot()
path for users (default:false
).users
: Options for specific users (default:[]
).
allow
takes an array:
allow => ['scp', 'sftp', 'cvs', 'rdist', 'rsync', 'svnserve']
As does users
:
users => ['foo:011:000100', 'bar:011:000100']
See rssh.conf(5)
for more information.
Copyright (c) 2012 Ãrjan Blom <blom@blom.tv> Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.