diff options
author | Micah Anderson <micah@riseup.net> | 2008-09-27 13:30:52 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2008-09-27 13:30:52 -0400 |
commit | 2391ef9bfe2e5960a024b68d8e19d3a0954dd48c (patch) | |
tree | fef54fbbfbbd5e18063da0c8ecf7d22468d87e5e /templates/sshd_config/Debian_normal.erb | |
parent | f62573822bf3997cd31707a9c6fa32604b3f23c1 (diff) | |
download | puppet-sshd-2391ef9bfe2e5960a024b68d8e19d3a0954dd48c.tar.gz puppet-sshd-2391ef9bfe2e5960a024b68d8e19d3a0954dd48c.tar.bz2 |
add the ability to set the ListenAddress configuration option through sshd_listen_address
Diffstat (limited to 'templates/sshd_config/Debian_normal.erb')
-rw-r--r-- | templates/sshd_config/Debian_normal.erb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/sshd_config/Debian_normal.erb b/templates/sshd_config/Debian_normal.erb index d33064a..df8ebc8 100644 --- a/templates/sshd_config/Debian_normal.erb +++ b/templates/sshd_config/Debian_normal.erb @@ -2,7 +2,6 @@ # See the sshd(8) manpage for details # What ports, IPs and protocols we listen for - <%- unless real_sshd_port.to_s.empty? then %> Port <%= real_sshd_port -%> <%- else -%> @@ -10,8 +9,9 @@ Port 22 <%- end -%> # Use these options to restrict which interfaces/protocols sshd will bind to -#ListenAddress :: -#ListenAddress 0.0.0.0 +<% for address in real_sshd_listen_address -%> +ListenAddress <%= address %> +<% end -%> Protocol 2 # HostKeys for protocol version 2 HostKey /etc/ssh/ssh_host_rsa_key |