summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'manifests')
-rw-r--r--manifests/cron/linux.pp2
-rw-r--r--manifests/cron/openbsd.pp2
2 files changed, 2 insertions, 2 deletions
diff --git a/manifests/cron/linux.pp b/manifests/cron/linux.pp
index fac7d4e..de831c7 100644
--- a/manifests/cron/linux.pp
+++ b/manifests/cron/linux.pp
@@ -7,6 +7,6 @@ class puppet::cron::linux inherits puppet::linux {
File['/etc/cron.d/puppetd.cron']{
source => undef,
content => "# run puppet
-0,30 * * * * root puppetd --onetime --no-daemonize --splay true --config=$puppet_config\n",
+0,30 * * * * root /usr/sbin/puppetd --onetime --no-daemonize --splay true --config=$puppet_config\n",
}
}
diff --git a/manifests/cron/openbsd.pp b/manifests/cron/openbsd.pp
index 38b2a4a..ea91593 100644
--- a/manifests/cron/openbsd.pp
+++ b/manifests/cron/openbsd.pp
@@ -14,7 +14,7 @@ class puppet::cron::openbsd inherits puppet::openbsd {
}
cron { 'puppetd_restart':
- command => "puppetd --onetime --no-daemonize --splay true --config=$puppet_config",
+ command => "/usr/local/bin/puppetd --onetime --no-daemonize --splay true --config=$puppet_config",
user => 'root',
minute => [0,30],
}