diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/cron/base.pp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/manifests/cron/base.pp b/manifests/cron/base.pp index 76e1099..3f7f8c0 100644 --- a/manifests/cron/base.pp +++ b/manifests/cron/base.pp @@ -2,7 +2,10 @@ class puppet::cron::base inherits puppet::base { Service['puppet']{ - enable => false, + enable => false, + } + File['puppet_config']{ + notify => undef } case $operatingsystem { debian,openbsd: { @@ -15,8 +18,8 @@ class puppet::cron::base inherits puppet::base { } } exec{'stop_puppet': - command => 'kill `cat /var/run/puppet/puppetd.pid`', - onlyif => 'test -f /var/run/puppet/puppetd.pid', - require => Service['puppet'], + command => 'kill `cat /var/run/puppet/puppetd.pid`', + onlyif => 'test -f /var/run/puppet/puppetd.pid', + require => Service['puppet'], } } |