diff options
| author | Micah Anderson <micah@riseup.net> | 2014-05-27 16:43:47 -0400 | 
|---|---|---|
| committer | Micah Anderson <micah@riseup.net> | 2014-05-27 16:43:47 -0400 | 
| commit | 5c23b33200fc6229ada7f4e13672b5da0d4bdd8e (patch) | |
| tree | c9f1dfa6d8d56aee802c67fbdbd4d7c3f84f62e4 | |
| parent | 6b1044a0c741bdcf14c5ef501f61d422118d13ca (diff) | |
| download | puppet-sshd-5c23b33200fc6229ada7f4e13672b5da0d4bdd8e.tar.gz puppet-sshd-5c23b33200fc6229ada7f4e13672b5da0d4bdd8e.tar.bz2  | |
update $authorized_keys_file variable default to be the default is
documented by sshd_config(5)
| -rw-r--r-- | manifests/init.pp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index bccef83..c85d3d6 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -26,7 +26,7 @@ class sshd(    $rhosts_rsa_authentication = 'no',    $hostbased_authentication = 'no',    $permit_empty_passwords = 'no', -  $authorized_keys_file = '%h/.ssh/authorized_keys', +  $authorized_keys_file = '%h/.ssh/authorized_keys %h/.ssh/authorized_keys2',    $hardened_ssl = 'no',    $sftp_subsystem = '',    $head_additional_options = '',  | 
