]> gitweb.fluxo.info Git - puppet-sshd.git/commitdiff
fix the default of PubkeyAuthentication (supposed to be yes, but was set to no)
authorMicah Anderson <micah@riseup.net>
Sat, 27 Sep 2008 19:19:43 +0000 (15:19 -0400)
committerMicah Anderson <micah@riseup.net>
Sat, 27 Sep 2008 19:19:43 +0000 (15:19 -0400)
manifests/init.pp

index 7abc2efa2325e576a65995ee6a95485b0cbdd534..af948f3992f6f08a6da887b1463d3e90949c3cec 100644 (file)
@@ -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 ? {