summaryrefslogtreecommitdiff
path: root/puppet/modules/site_shorewall/manifests/sshd.pp
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2013-02-12 13:12:27 -0500
committerMicah Anderson <micah@riseup.net>2013-02-12 13:13:21 -0500
commitaab5906b79a43fbcedab819a05b25bef7a2757c8 (patch)
tree17e5b73f42cd93c766144806daf44ff4afaa0f0a /puppet/modules/site_shorewall/manifests/sshd.pp
parent1b01713860db2cb0df080874b31c0ba898323c35 (diff)
file resources that make changes to shorewall need to make sure that shorewall is installed first (#1741)
Diffstat (limited to 'puppet/modules/site_shorewall/manifests/sshd.pp')
-rw-r--r--puppet/modules/site_shorewall/manifests/sshd.pp3
1 files changed, 2 insertions, 1 deletions
diff --git a/puppet/modules/site_shorewall/manifests/sshd.pp b/puppet/modules/site_shorewall/manifests/sshd.pp
index 2cf4fd56..a8e09e42 100644
--- a/puppet/modules/site_shorewall/manifests/sshd.pp
+++ b/puppet/modules/site_shorewall/manifests/sshd.pp
@@ -8,7 +8,8 @@ class site_shorewall::sshd {
# define macro for incoming sshd
file { '/etc/shorewall/macro.leap_sshd':
content => "PARAM - - tcp $ssh_port",
- notify => Service['shorewall']
+ notify => Service['shorewall'],
+ require => Package['shorewall']
}