diff options
author | Gabriel Filion <lelutin@gmail.com> | 2011-01-30 21:24:00 -0500 |
---|---|---|
committer | Gabriel Filion <lelutin@gmail.com> | 2011-01-30 21:24:00 -0500 |
commit | 3662c5a2a5db912109f82970691f762df285ac92 (patch) | |
tree | fb69c120d628004d7eb78df7dc4ca0e453da6f39 | |
parent | 2188f46db75d74d00ac4a2cb3cdaa34f98d1148d (diff) | |
download | puppet-sshd-3662c5a2a5db912109f82970691f762df285ac92.tar.gz puppet-sshd-3662c5a2a5db912109f82970691f762df285ac92.tar.bz2 |
Finish fixing ChallengeResponseAuthentication
This value was hardcoded in both the Debian lenny and etch templates.
The lenny template was fixed with commit 167cf532711ac88 but the etch
template was left out.
Fix the etch template so that the ChallengeResponseAuthentication
instruction is not overridden.
Signed-off-by: Gabriel Filion <lelutin@gmail.com>
-rw-r--r-- | templates/sshd_config/Debian_etch.erb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/templates/sshd_config/Debian_etch.erb b/templates/sshd_config/Debian_etch.erb index 746a447..a9a9f59 100644 --- a/templates/sshd_config/Debian_etch.erb +++ b/templates/sshd_config/Debian_etch.erb @@ -167,8 +167,6 @@ AllowTcpForwarding yes AllowTcpForwarding no <%- end -%> -ChallengeResponseAuthentication no - <%- unless sshd_allowed_users.to_s.empty? then -%> AllowUsers <%= sshd_allowed_users -%> <%- end -%> |