diff options
author | varac <varacanero@zeromail.org> | 2013-01-02 14:23:41 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2013-01-02 14:23:41 +0100 |
commit | 18b8da26f9ed976ccb908000014a275899797567 (patch) | |
tree | 7d60852e0da67d6e5e17157ecb3724071f62de8b | |
parent | 2a98b04c08087fc27fea067861c3e4fa08af36a7 (diff) |
added service dependency for cronpuppet_cron
-rw-r--r-- | manifests/cron/linux.pp | 3 | ||||
-rw-r--r-- | manifests/puppetmaster/checklastrun.pp | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/manifests/cron/linux.pp b/manifests/cron/linux.pp index 33a4535..263dc3f 100644 --- a/manifests/cron/linux.pp +++ b/manifests/cron/linux.pp @@ -17,6 +17,7 @@ class puppet::cron::linux inherits puppet::linux { source => undef, content => "#run puppet\n${puppet_crontime} root output=\$(/usr/sbin/puppetd --onetime --no-daemonize --splay --config=/etc/puppet/puppet.conf --color false); ret=\$?; printf \"\\%s\" \"\$output\" | grep -E '(^err:|^alert:|^emerg:|^crit:)'; exit \$ret\n", before => Service['puppet'], - ensure => present + ensure => present, + notify => service['cron'] } } diff --git a/manifests/puppetmaster/checklastrun.pp b/manifests/puppetmaster/checklastrun.pp index f89edd0..b57ec05 100644 --- a/manifests/puppetmaster/checklastrun.pp +++ b/manifests/puppetmaster/checklastrun.pp @@ -25,5 +25,6 @@ class puppet::puppetmaster::checklastrun { owner => root, group => 0, mode => '0644', + notify => service['cron'] } } |