diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2009-12-27 14:01:55 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2009-12-27 14:01:55 -0200 |
commit | bbc03d2c1069d42ea96101c54186e034b3a06f9b (patch) | |
tree | fee67845af82dae744d3526c404b1aa6f5fd5fac /templates/sshd_config | |
parent | ea1a34bd79bbd3e7842c2ea9e66fbd86d43016b4 (diff) | |
download | puppet-sshd-bbc03d2c1069d42ea96101c54186e034b3a06f9b.tar.gz puppet-sshd-bbc03d2c1069d42ea96101c54186e034b3a06f9b.tar.bz2 |
PrintMotd using default OpenSSH setting
Diffstat (limited to 'templates/sshd_config')
-rw-r--r-- | templates/sshd_config/Debian_etch.erb | 4 | ||||
-rw-r--r-- | templates/sshd_config/Debian_lenny.erb | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/templates/sshd_config/Debian_etch.erb b/templates/sshd_config/Debian_etch.erb index 746a447..7a38cc4 100644 --- a/templates/sshd_config/Debian_etch.erb +++ b/templates/sshd_config/Debian_etch.erb @@ -176,7 +176,9 @@ AllowUsers <%= sshd_allowed_users -%> AllowGroups <%= sshd_allowed_groups %> <%- end %> -PrintMotd no +<%- if sshd_print_motd.to_s == 'no' then -%> + PrintMotd no +<%- end -%> <%- unless sshd_tail_additional_options.to_s.empty? then %> <%= sshd_tail_additional_options %> diff --git a/templates/sshd_config/Debian_lenny.erb b/templates/sshd_config/Debian_lenny.erb index 18f3e4d..5f7afb4 100644 --- a/templates/sshd_config/Debian_lenny.erb +++ b/templates/sshd_config/Debian_lenny.erb @@ -182,7 +182,9 @@ AllowUsers <%= sshd_allowed_users -%> AllowGroups <%= sshd_allowed_groups %> <%- end %> +<%- if sshd_print_motd.to_s == 'no' then -%> PrintMotd no +<%- end -%> <%- unless sshd_tail_additional_options.to_s.empty? then %> <%= sshd_tail_additional_options %> |