diff options
author | mh <mh@immerda.ch> | 2015-11-20 22:43:06 +0100 |
---|---|---|
committer | mh <mh@immerda.ch> | 2015-12-05 11:36:31 +0100 |
commit | 220d7af45dc4b1c334e2d3f50f2bc8ab54139093 (patch) | |
tree | 40dbd969522c93e4c1f55f0f1e7b3a6bc0f5b4fa /manifests/debian.pp | |
parent | 353492eaa1c9047547b17161df4aa58ea3bf0a87 (diff) | |
download | puppet-shorewall-220d7af45dc4b1c334e2d3f50f2bc8ab54139093.tar.gz puppet-shorewall-220d7af45dc4b1c334e2d3f50f2bc8ab54139093.tar.bz2 |
make service restart more failsafe
Diffstat (limited to 'manifests/debian.pp')
-rw-r--r-- | manifests/debian.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/debian.pp b/manifests/debian.pp index 01d108f..326b42b 100644 --- a/manifests/debian.pp +++ b/manifests/debian.pp @@ -2,8 +2,8 @@ class shorewall::debian inherits shorewall::base { file{'/etc/default/shorewall': content => template("shorewall/debian_default.erb"), require => Package['shorewall'], - notify => Service['shorewall'], - owner => 'root', group => 'root', mode => '0644'; + notify => Exec['shorewall_check'], + owner => 'root', group => 'root', mode => '0644'; } Service['shorewall']{ status => '/sbin/shorewall status' |