summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp9
1 files changed, 9 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 02f2e42..5ba3e22 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -71,6 +71,11 @@
# sshd_strict_modes: If you want to set StrictModes (check file modes/ownership before accepting login)
# Valid Values: yes or no
# Default: yes
+#
+# sshd_permit_empty_passwords: If you want enable PermitEmptyPasswords to allow empty passwords
+# Valid Values: yes or no
+# Default: no
+
class sshd {
include sshd::client
@@ -141,6 +146,10 @@ class sshd::base {
'' => 'no',
default => $sshd_hostbased_authentication
}
+ $real_sshd_permit_empty_passwords = $sshd_permit_empty_passwords ? {
+ '' => 'no',
+ default => $sshd_permit_empty_passwords
+ }
file { 'sshd_config':
path => '/etc/ssh/sshd_config',