diff options
Diffstat (limited to 'manifests/kvm.pp')
-rw-r--r-- | manifests/kvm.pp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/manifests/kvm.pp b/manifests/kvm.pp index 2687a24..2010cf9 100644 --- a/manifests/kvm.pp +++ b/manifests/kvm.pp @@ -50,7 +50,15 @@ class nodo::kvm inherits nodo { case $sshd_listen_address { '': { $sshd_listen_address = [ "$ipaddress" ] } } - include sshd + + 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, |