diff options
author | Tomas Barton <barton.tomas@gmail.com> | 2014-01-25 19:08:04 +0100 |
---|---|---|
committer | Tomas Barton <barton.tomas@gmail.com> | 2014-01-25 19:08:04 +0100 |
commit | 2a0b58d6a8c2934ac2cd96364d6a3a6caee81a04 (patch) | |
tree | 40bd48a620d22d718e04b380f7fda0a7f0fc3505 /README.md | |
parent | 5486852c9e7a829209a640f031b6ee6f10bee239 (diff) | |
download | puppet-sshd-2a0b58d6a8c2934ac2cd96364d6a3a6caee81a04.tar.gz puppet-sshd-2a0b58d6a8c2934ac2cd96364d6a3a6caee81a04.tar.bz2 |
testing infastructure, rspec tests
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 15 |
1 files changed, 11 insertions, 4 deletions
@@ -1,4 +1,4 @@ -# puppet-sshd +# Puppet SSH Module This puppet module manages OpenSSH configuration and services. @@ -26,9 +26,16 @@ include class { 'sshd': } ``` -on that node. If you need to configure any aspects of -sshd_config, set the variables before the include. See Configurable Variables -below for what you can set. +on that node. If you need to configure any aspects of sshd_config, set the variables before the include. Or you can adjust many parameters: + +```puppet +class { 'sshd': + ports => [ 20002 ], + permit_root_login => 'no', +} +``` + +See Configurable Variables below for what you can set. ### Nagios |