diff options
author | mh <mh@immerda.ch> | 2010-08-17 15:17:26 +0200 |
---|---|---|
committer | mh <mh@immerda.ch> | 2010-08-17 15:17:26 +0200 |
commit | 66d3383131ec3a3b992c530bbcc1603cbcd0d9db (patch) | |
tree | 9c04736fe300b8683b4ea6b7bb27d7c6c9ac7f53 /manifests/cron | |
parent | 9f83acbda5baf8bda129ddddcbe7e8114d5b7b87 (diff) |
update openbsd stuff to 2.6 style
Diffstat (limited to 'manifests/cron')
-rw-r--r-- | manifests/cron/openbsd.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/cron/openbsd.pp b/manifests/cron/openbsd.pp index bca3dc6..5575326 100644 --- a/manifests/cron/openbsd.pp +++ b/manifests/cron/openbsd.pp @@ -19,7 +19,7 @@ class puppet::cron::openbsd inherits puppet::openbsd { } cron { 'puppetd_run': - command => "/usr/local/sbin/puppetd --onetime --no-daemonize --config=$puppet_config --color false | grep -E '(^err:|^alert:|^emerg:|^crit:)'", + command => "/usr/local/sbin/puppet agent --onetime --no-daemonize --config=$puppet_config --color false | grep -E '(^err:|^alert:|^emerg:|^crit:)'", user => 'root', minute => split(regsubst($puppet_crontime,'^([\d,\-,*,/,\,]+) ([\d,\-,*,/,\,]+) ([\d,\-,*,/,\,]+) ([\d,\-,*,/,\,]+) ([\d,\-,*,/,\,]+)$','\1'),','), hour => split(regsubst($puppet_crontime,'^([\d,\-,*,/,\,]+) ([\d,\-,*,/,\,]+) ([\d,\-,*,/,\,]+) ([\d,\-,*,/,\,]+) ([\d,\-,*,/,\,]+)$','\2'),','), |