diff options
| author | Micah Anderson <micah@riseup.net> | 2008-09-27 15:19:43 -0400 |
|---|---|---|
| committer | Micah Anderson <micah@riseup.net> | 2008-09-27 15:19:43 -0400 |
| commit | 57a0fd279ecd2b85f05797168b86b7ee1d709ed7 (patch) | |
| tree | 0df963579df2eb549e750cb37cbc89a8c485e0ca | |
| parent | 11be1b1f8c498bca58296dd98e3c586f65c301f7 (diff) | |
| download | puppet-sshd-57a0fd279ecd2b85f05797168b86b7ee1d709ed7.tar.gz puppet-sshd-57a0fd279ecd2b85f05797168b86b7ee1d709ed7.tar.bz2 | |
fix the default of PubkeyAuthentication (supposed to be yes, but was set to no)
| -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 7abc2ef..af948f3 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -147,7 +147,7 @@ class sshd::base { default => $sshd_challenge_response_authentication } $real_sshd_pubkey_authentication = $sshd_pubkey_authentication ? { - '' => 'no', + '' => 'yes', default => $sshd_pubkey_authentication } $real_sshd_rsa_authentication = $sshd_rsa_authentication ? { |
