diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-07-13 18:39:18 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-07-13 18:39:18 -0300 |
commit | 99928cd61e67836d39aad9e2b2ce8b06badf0f0b (patch) | |
tree | 0900294971db6f5781a99424ff9842291b700b8f /manifests/init.pp | |
parent | 4d73d3784e074b719ef43efe152cb7d38ce24c7e (diff) | |
parent | 779d27e0ae3e5430d11ea5b3084893c16466b5c0 (diff) | |
download | puppet-sshd-99928cd61e67836d39aad9e2b2ce8b06badf0f0b.tar.gz puppet-sshd-99928cd61e67836d39aad9e2b2ce8b06badf0f0b.tar.bz2 |
Merge branch 'master' of git://labs.riseup.net/shared-sshd
Diffstat (limited to 'manifests/init.pp')
-rw-r--r-- | manifests/init.pp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index bfefaab..af25e9e 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -77,6 +77,9 @@ class sshd { case $sshd_authorized_keys_file { '': { $sshd_authorized_keys_file = "%h/.ssh/authorized_keys" } } + case $sshd_hardened_ssl { + '': { $sshd_hardened_ssl = 'no' } + } case $sshd_sftp_subsystem { '': { $sshd_sftp_subsystem = '' } } @@ -99,7 +102,7 @@ class sshd { '': { $sshd_use_strong_ciphers = "no" } } - include sshd::client + include sshd::client case $operatingsystem { gentoo: { include sshd::gentoo } @@ -107,7 +110,7 @@ class sshd { centos: { include sshd::centos } openbsd: { include sshd::openbsd } debian,ubuntu: { include sshd::debian } - default: { include sshd::default } + default: { include sshd::base } } if $use_nagios { |