diff options
author | mh <mh@immerda.ch> | 2012-02-10 15:34:35 +0100 |
---|---|---|
committer | mh <mh@immerda.ch> | 2012-02-10 15:34:35 +0100 |
commit | ce27d7cd097c0e2267be494b9988efe91b87165f (patch) | |
tree | 4777ae2840afa0f4d2d96751bfc84af8fa36c9a0 | |
parent | f84ab26a710ba6d9d3ca1ce2a9f97e9e08db8136 (diff) | |
download | puppet-shorewall-ce27d7cd097c0e2267be494b9988efe91b87165f.tar.gz puppet-shorewall-ce27d7cd097c0e2267be494b9988efe91b87165f.tar.bz2 |
get the order right
-rw-r--r-- | manifests/centos.pp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/manifests/centos.pp b/manifests/centos.pp index f0825dd..c61e03c 100644 --- a/manifests/centos.pp +++ b/manifests/centos.pp @@ -5,7 +5,8 @@ class shorewall::centos inherits shorewall::base { file{'/etc/shorewall/params': ensure => link, target => '/etc/shorewall/puppet/params', - before => Service['shorewall'] + before => Service['shorewall'], + require => File['/etc/shorewall/puppet'] } } -}
\ No newline at end of file +} |