fix the default of PubkeyAuthentication (supposed to be yes, but was set to no)

This commit is contained in:
Micah Anderson 2008-09-27 15:19:43 -04:00
parent 11be1b1f8c
commit 57a0fd279e

View 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 ? {