aboutsummaryrefslogtreecommitdiff
path: root/templates/sshd_config/Debian_etch.erb
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2009-07-07 20:52:40 -0400
committerMicah Anderson <micah@riseup.net>2009-07-07 20:52:40 -0400
commitf44776cbbf1f825e0961c6aedecf67f6652859a6 (patch)
tree5a97a355ac6472f1e23a187b5adb730ce93068a1 /templates/sshd_config/Debian_etch.erb
parent60eb9319d3d1c4697de349485326a9ab019f5856 (diff)
downloadpuppet-sshd-f44776cbbf1f825e0961c6aedecf67f6652859a6.tar.gz
puppet-sshd-f44776cbbf1f825e0961c6aedecf67f6652859a6.tar.bz2
replace the sshd_additional_options variable with two, one called
sshd_head_additional_options and one called sshd_tail_additional_options. the first puts the value at the beginning of the file, and the second at the end. This is necessary due to some option ordering requiring things to be before others
Diffstat (limited to 'templates/sshd_config/Debian_etch.erb')
-rw-r--r--templates/sshd_config/Debian_etch.erb8
1 files changed, 6 insertions, 2 deletions
diff --git a/templates/sshd_config/Debian_etch.erb b/templates/sshd_config/Debian_etch.erb
index f030a62..2524172 100644
--- a/templates/sshd_config/Debian_etch.erb
+++ b/templates/sshd_config/Debian_etch.erb
@@ -1,6 +1,10 @@
# Package generated configuration file
# See the sshd(8) manpage for details
+<%- unless sshd_head_additional_options.to_s.empty? then %>
+<%= sshd_head_additional_options %>
+<%- end %>
+
# What ports, IPs and protocols we listen for
<%- unless sshd_port.to_s.empty? then -%>
Port <%= sshd_port -%>
@@ -170,7 +174,7 @@ AllowGroups <%= sshd_allowed_groups %>
PrintMotd no
-<%- unless sshd_additional_options.to_s.empty? then %>
-<%= sshd_additional_options %>
+<%- unless sshd_tail_additional_options.to_s.empty? then %>
+<%= sshd_tail_additional_options %>
<%- end %>