diff options
author | mh <mh@immerda.ch> | 2010-05-05 22:20:02 +0200 |
---|---|---|
committer | mh <mh@immerda.ch> | 2010-05-05 22:20:02 +0200 |
commit | 37a9419dfd50a56f35f28ea0db6e5dff577d8059 (patch) | |
tree | a92956cd66a728fb98aba5b3c3860f6caf5e1f79 /manifests | |
parent | 71b396d2826dadbaa5feeb35efe59606137b7bf2 (diff) | |
download | puppet-shorewall-37a9419dfd50a56f35f28ea0db6e5dff577d8059.tar.gz puppet-shorewall-37a9419dfd50a56f35f28ea0db6e5dff577d8059.tar.bz2 |
adapt shorewall module to new behavior of concatenated_file
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/base.pp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/manifests/base.pp b/manifests/base.pp index c814795..406aa80 100644 --- a/manifests/base.pp +++ b/manifests/base.pp @@ -27,18 +27,18 @@ class shorewall::base { hasstatus => true, hasrestart => true, subscribe => [ - Exec["concat_/var/lib/puppet/modules/shorewall/zones"], - Exec["concat_/var/lib/puppet/modules/shorewall/interfaces"], - Exec["concat_/var/lib/puppet/modules/shorewall/hosts"], - Exec["concat_/var/lib/puppet/modules/shorewall/policy"], - Exec["concat_/var/lib/puppet/modules/shorewall/rules"], - Exec["concat_/var/lib/puppet/modules/shorewall/masq"], - Exec["concat_/var/lib/puppet/modules/shorewall/proxyarp"], - Exec["concat_/var/lib/puppet/modules/shorewall/nat"], - Exec["concat_/var/lib/puppet/modules/shorewall/blacklist"], - Exec["concat_/var/lib/puppet/modules/shorewall/rfc1918"], - Exec["concat_/var/lib/puppet/modules/shorewall/routestopped"], - Exec["concat_/var/lib/puppet/modules/shorewall/params"] + File["/var/lib/puppet/modules/shorewall/zones"], + File["/var/lib/puppet/modules/shorewall/interfaces"], + File["/var/lib/puppet/modules/shorewall/hosts"], + File["/var/lib/puppet/modules/shorewall/policy"], + File["/var/lib/puppet/modules/shorewall/rules"], + File["/var/lib/puppet/modules/shorewall/masq"], + File["/var/lib/puppet/modules/shorewall/proxyarp"], + File["/var/lib/puppet/modules/shorewall/nat"], + File["/var/lib/puppet/modules/shorewall/blacklist"], + File["/var/lib/puppet/modules/shorewall/rfc1918"], + File["/var/lib/puppet/modules/shorewall/routestopped"], + File["/var/lib/puppet/modules/shorewall/params"] ], require => Package[shorewall], } |