diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-01-18 13:56:14 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-01-18 13:56:14 -0200 |
commit | af0bc1b973f7146f83929e0223d6728666a90314 (patch) | |
tree | 1e9a689c22acf92638a24f72d73e7d62c611f51c /manifests | |
parent | 9c58c945ad85ce452737f7f13ccde24d57dbeea0 (diff) | |
download | puppet-nodo-af0bc1b973f7146f83929e0223d6728666a90314.tar.gz puppet-nodo-af0bc1b973f7146f83929e0223d6728666a90314.tar.bz2 |
Adding missing sshd parameters
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/physical.pp | 2 | ||||
-rw-r--r-- | manifests/plug.pp | 2 | ||||
-rw-r--r-- | manifests/vserver.pp | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/manifests/physical.pp b/manifests/physical.pp index 03e8c7c..0c44098 100644 --- a/manifests/physical.pp +++ b/manifests/physical.pp @@ -59,6 +59,8 @@ class nodo::physical inherits nodo { tcp_forwarding => $ssh_tcp_forwarding, hardened_ssl => $ssh_hardened_ssl, print_motd => $ssh_print_motd, + ports => $sshd_ports, + use_pam => $sshd_use_pam, } backupninja::sys { "sys": diff --git a/manifests/plug.pp b/manifests/plug.pp index 37c69c5..a67c50e 100644 --- a/manifests/plug.pp +++ b/manifests/plug.pp @@ -14,6 +14,8 @@ class nodo::plug inherits nodo { tcp_forwarding => $ssh_tcp_forwarding, hardened_ssl => $ssh_hardened_ssl, print_motd => $ssh_print_motd, + ports => $sshd_ports, + use_pam => $sshd_use_pam, } backupninja::sys { "sys": diff --git a/manifests/vserver.pp b/manifests/vserver.pp index e84f219..e41f729 100644 --- a/manifests/vserver.pp +++ b/manifests/vserver.pp @@ -9,6 +9,8 @@ class nodo::vserver inherits nodo { tcp_forwarding => $ssh_tcp_forwarding, hardened_ssl => $ssh_hardened_ssl, print_motd => $ssh_print_motd, + ports => $sshd_ports, + use_pam => $sshd_use_pam, } backupninja::sys { "sys": |