diff options
Diffstat (limited to 'manifests/plug.pp')
-rw-r--r-- | manifests/plug.pp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/manifests/plug.pp b/manifests/plug.pp index 99bde89..37c69c5 100644 --- a/manifests/plug.pp +++ b/manifests/plug.pp @@ -1,5 +1,4 @@ class nodo::plug inherits nodo { - include sshd include ntpdate include syslog-ng include utils::plug @@ -8,6 +7,15 @@ class nodo::plug inherits nodo { include resolver include monkeysphere_nodo + class { 'sshd': + listen_address => $sshd_listen_address, + password_authentication => $ssh_password_authentication, + shared_ip => $ssh_shared_ip, + tcp_forwarding => $ssh_tcp_forwarding, + hardened_ssl => $ssh_hardened_ssl, + print_motd => $ssh_print_motd, + } + backupninja::sys { "sys": ensure => present, } |