summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2013-05-20 15:07:27 +0200
committermh <mh@immerda.ch>2013-05-20 15:09:49 +0200
commit32abf4998f39058ddc1d0fbb870ee533328faba9 (patch)
tree1105bb071262f2cb2a455ce1d6b87429d97ec9a9 /manifests
parentfa4b8e6f966d453d891da2101807c5493625e65c (diff)
follow new naming convention
Diffstat (limited to 'manifests')
-rw-r--r--manifests/cron/linux.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/cron/linux.pp b/manifests/cron/linux.pp
index f5b0ebb..d0d0e92 100644
--- a/manifests/cron/linux.pp
+++ b/manifests/cron/linux.pp
@@ -17,7 +17,7 @@ class puppet::cron::linux inherits puppet::linux {
File['/etc/cron.d/puppetd']{
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",
+ content => "#run puppet\n${puppet_crontime} root output=\$(/usr/bin/puppet agent --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']