diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-03-19 10:18:43 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-03-19 10:18:43 -0300 |
commit | 70137bad3f6f25504aba1fbc9e5e383d6d992bfa (patch) | |
tree | 567ba55057269462ac9a70bff45321f36d5e97c0 | |
parent | dc9bfdfcb2d67c6ef6d3b4069d0011ad022e9818 (diff) | |
download | puppet-nodo-70137bad3f6f25504aba1fbc9e5e383d6d992bfa.tar.gz puppet-nodo-70137bad3f6f25504aba1fbc9e5e383d6d992bfa.tar.bz2 |
Updates sshd config
-rw-r--r-- | manifests/subsystem/sshd.pp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/manifests/subsystem/sshd.pp b/manifests/subsystem/sshd.pp index cf57f72..6650fb9 100644 --- a/manifests/subsystem/sshd.pp +++ b/manifests/subsystem/sshd.pp @@ -11,10 +11,11 @@ class nodo::subsystem::sshd { shared_ip => hiera('nodo::subsystem::sshd::shared_ip', 'yes'), tcp_forwarding => hiera('nodo::subsystem::sshd::tcp_forwarding', 'yes'), x11_forwarding => hiera('nodo::subsystem::sshd::x11_forwarding', 'no'), - hardened_ssl => hiera('nodo::subsystem::sshd::hardened_ssl', 'yes'), + hardened => hiera('nodo::subsystem::sshd::hardened', 'yes'), print_motd => hiera('nodo::subsystem::sshd::print_motd', 'no'), ports => hiera('nodo::subsystem::sshd::ports', [ 22 ]), use_pam => hiera('nodo::subsystem::sshd::use_pam', 'no'), + use_storedconfigs => hiera('nodo::subsystem::use_storedconfigs', false), } # Add the localhost ssh key, useful when one needs |