diff options
author | Micah Anderson <micah@riseup.net> | 2013-02-26 15:07:38 -0500 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2013-02-26 15:07:38 -0500 |
commit | b3aca2b0cd35f9cc921d1703a597ddbc91529044 (patch) | |
tree | 32ac82d41ec50d967ad31cf781e8ced612a42127 /puppet/modules | |
parent | b63bcc1b9e44c0f0ec7a500538e7ce18bbf48bc2 (diff) |
missed another require => Package['shorewall'] on the file resources in site_shorewall
Diffstat (limited to 'puppet/modules')
-rw-r--r-- | puppet/modules/site_shorewall/manifests/eip.pp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/puppet/modules/site_shorewall/manifests/eip.pp b/puppet/modules/site_shorewall/manifests/eip.pp index 4e5a5d48..d2bf3c4c 100644 --- a/puppet/modules/site_shorewall/manifests/eip.pp +++ b/puppet/modules/site_shorewall/manifests/eip.pp @@ -12,7 +12,8 @@ class site_shorewall::eip { content => "PARAM - - tcp 1194 PARAM - - udp 1194 ", - notify => Service['shorewall'] + notify => Service['shorewall'], + require => Package['shorewall'] } |