summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2008-09-27 15:19:43 -0400
committerMicah Anderson <micah@riseup.net>2008-09-27 15:19:43 -0400
commit57a0fd279ecd2b85f05797168b86b7ee1d709ed7 (patch)
tree0df963579df2eb549e750cb37cbc89a8c485e0ca /manifests
parent11be1b1f8c498bca58296dd98e3c586f65c301f7 (diff)
fix the default of PubkeyAuthentication (supposed to be yes, but was set to no)
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp2
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 ? {