summaryrefslogtreecommitdiff
path: root/manifests/cron/linux.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/cron/linux.pp')
-rw-r--r--manifests/cron/linux.pp4
1 files changed, 3 insertions, 1 deletions
diff --git a/manifests/cron/linux.pp b/manifests/cron/linux.pp
index 263dc3f..e00b4d0 100644
--- a/manifests/cron/linux.pp
+++ b/manifests/cron/linux.pp
@@ -13,11 +13,13 @@ class puppet::cron::linux inherits puppet::linux {
$puppet_crontime = "${puppet_crontime_interval_minute},${puppet_crontime_interval_minute2} * * * *"
}
+ include ::cron
+
File['/etc/cron.d/puppetd.cron']{
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,
- notify => service['cron']
+ notify => Service['cron']
}
}