summaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp12
1 files changed, 11 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index d005d60..6b9c66a 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -26,7 +26,17 @@ class sshd(
$rhosts_rsa_authentication = 'no',
$hostbased_authentication = 'no',
$permit_empty_passwords = 'no',
- $authorized_keys_file = '%h/.ssh/authorized_keys %h/.ssh/authorized_keys2',
+ $authorized_keys_file = $::osfamily ? {
+ Debian => $::operatingsystemmajrelease ? {
+ 6 => '%h/.ssh/authorized_keys',
+ default => '%h/.ssh/authorized_keys %h/.ssh/authorized_keys2',
+ },
+ RedHat => $::operatingsystemmajrelease ? {
+ 5 => '%h/.ssh/authorized_keys',
+ default => '%h/.ssh/authorized_keys %h/.ssh/authorized_keys2',
+ },
+ default => '%h/.ssh/authorized_keys %h/.ssh/authorized_keys2',
+ },
$hardened_ssl = 'no',
$sftp_subsystem = '',
$head_additional_options = '',