summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorTomas Barton <barton.tomas@gmail.com>2014-01-25 19:08:04 +0100
committerTomas Barton <barton.tomas@gmail.com>2014-01-25 19:08:04 +0100
commit2a0b58d6a8c2934ac2cd96364d6a3a6caee81a04 (patch)
tree40bd48a620d22d718e04b380f7fda0a7f0fc3505 /README.md
parent5486852c9e7a829209a640f031b6ee6f10bee239 (diff)
testing infastructure, rspec tests
Diffstat (limited to 'README.md')
-rw-r--r--README.md15
1 files changed, 11 insertions, 4 deletions
diff --git a/README.md b/README.md
index f722857..3b94cb8 100644
--- a/README.md
+++ b/README.md
@@ -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