aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2008-09-26 17:21:01 -0400
committerMicah Anderson <micah@riseup.net>2008-09-26 17:21:01 -0400
commit19b49e80ee3b468ce1754f7b5dd62995f37b5e86 (patch)
tree1083dbf2418aee8ab06e7e0033c2e27e9946f6f5 /templates
parent6f5a865b583b1cc2c51484ce03f88be52e2c5b8d (diff)
downloadpuppet-sshd-19b49e80ee3b468ce1754f7b5dd62995f37b5e86.tar.gz
puppet-sshd-19b49e80ee3b468ce1754f7b5dd62995f37b5e86.tar.bz2
add the sshd_rsa_authentication option, default set to no
Diffstat (limited to 'templates')
-rw-r--r--templates/sshd_config/CentOS_normal.erb7
-rw-r--r--templates/sshd_config/Debian_normal.erb5
-rw-r--r--templates/sshd_config/Gentoo_normal.erb7
-rw-r--r--templates/sshd_config/OpenBSD_normal.erb7
4 files changed, 23 insertions, 3 deletions
diff --git a/templates/sshd_config/CentOS_normal.erb b/templates/sshd_config/CentOS_normal.erb
index b0bea46..a5c9c89 100644
--- a/templates/sshd_config/CentOS_normal.erb
+++ b/templates/sshd_config/CentOS_normal.erb
@@ -44,7 +44,12 @@ PermitRootLogin without-password
#StrictModes yes
#MaxAuthTries 6
-#RSAAuthentication yes
+<%- if real_sshd_rsa_authentication.to_s == 'yes' then %>
+RSAAuthentication yes
+<%- else %>
+RSAAuthentication no
+<%- end %>
+
<%- if real_sshd_sshd_pubkey_authentication.to_s == 'yes' then %>
PubkeyAuthentication yes
<%- else %>
diff --git a/templates/sshd_config/Debian_normal.erb b/templates/sshd_config/Debian_normal.erb
index d105ecc..985840c 100644
--- a/templates/sshd_config/Debian_normal.erb
+++ b/templates/sshd_config/Debian_normal.erb
@@ -34,7 +34,12 @@ PermitRootLogin without-password
<%- end %>
StrictModes yes
+<%- if real_sshd_rsa_authentication.to_s == 'yes' then %>
RSAAuthentication yes
+<%- else %>
+RSAAuthentication no
+<%- end %>
+
<%- if real_sshd_sshd_pubkey_authentication.to_s == 'yes' then %>
PubkeyAuthentication yes
<%- else %>
diff --git a/templates/sshd_config/Gentoo_normal.erb b/templates/sshd_config/Gentoo_normal.erb
index 3538754..ee27732 100644
--- a/templates/sshd_config/Gentoo_normal.erb
+++ b/templates/sshd_config/Gentoo_normal.erb
@@ -47,7 +47,12 @@ PermitRootLogin without-password
<%- end %>
#MaxAuthTries 6
-#RSAAuthentication yes
+<%- if real_sshd_rsa_authentication.to_s == 'yes' then %>
+RSAAuthentication yes
+<%- else %>
+RSAAuthentication no
+<%- end %>
+
<%- if real_sshd_sshd_pubkey_authentication.to_s == 'yes' then %>
PubkeyAuthentication yes
<%- else %>
diff --git a/templates/sshd_config/OpenBSD_normal.erb b/templates/sshd_config/OpenBSD_normal.erb
index bee3548..3043922 100644
--- a/templates/sshd_config/OpenBSD_normal.erb
+++ b/templates/sshd_config/OpenBSD_normal.erb
@@ -40,7 +40,12 @@ PermitRootLogin without-password
#StrictModes yes
#MaxAuthTries 6
-#RSAAuthentication yes
+<%- if real_sshd_rsa_authentication.to_s == 'yes' then %>
+RSAAuthentication yes
+<%- else %>
+RSAAuthentication no
+<%- end %>
+
<%- if real_sshd_sshd_pubkey_authentication.to_s == 'yes' then %>
PubkeyAuthentication yes
<%- else %>