summaryrefslogtreecommitdiff
path: root/puppet/modules/site_shorewall/manifests/defaults.pp
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2013-01-17 17:18:24 -0500
committerMicah Anderson <micah@riseup.net>2013-01-17 17:18:24 -0500
commitf9eb0d17ac2fabd8688201d9816a9a575d3b8d6a (patch)
tree4adfb4e910b5965d641ef58b0001892bba4380c5 /puppet/modules/site_shorewall/manifests/defaults.pp
parentfdcc33d4491470d88e1ab7e9869a3236d1e2c5fe (diff)
require the augeas class before doing any augeas operations (#1215)
Diffstat (limited to 'puppet/modules/site_shorewall/manifests/defaults.pp')
-rw-r--r--puppet/modules/site_shorewall/manifests/defaults.pp3
1 files changed, 2 insertions, 1 deletions
diff --git a/puppet/modules/site_shorewall/manifests/defaults.pp b/puppet/modules/site_shorewall/manifests/defaults.pp
index d348bf00..d5f60ec6 100644
--- a/puppet/modules/site_shorewall/manifests/defaults.pp
+++ b/puppet/modules/site_shorewall/manifests/defaults.pp
@@ -14,7 +14,8 @@ class site_shorewall::defaults {
changes => 'set /files/etc/shorewall/shorewall.conf/IP_FORWARDING Yes',
lens => 'Shellvars.lns',
incl => '/etc/shorewall/shorewall.conf',
- notify => Service[shorewall];
+ notify => Service[shorewall],
+ require => Class[augeas];
}
}