From: Micah Anderson Date: Sat, 27 Sep 2008 19:19:43 +0000 (-0400) Subject: fix the default of PubkeyAuthentication (supposed to be yes, but was set to no) X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=57a0fd279ecd2b85f05797168b86b7ee1d709ed7;p=puppet-sshd.git fix the default of PubkeyAuthentication (supposed to be yes, but was set to no) --- 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 ? {