diff options
author | mh <mh@immerda.ch> | 2010-08-09 14:07:45 +0200 |
---|---|---|
committer | mh <mh@immerda.ch> | 2010-08-09 14:07:45 +0200 |
commit | 0b8e36558c29289a4394e7ab0d6829c1d8c8ee03 (patch) | |
tree | fadb9e95a08951dae0e6532b6aaf2d493dadd1b7 /manifests/cron | |
parent | 3523cd025de64feb3a8b5fc2e3b100a2012f4fc0 (diff) |
remove splay from openbsd cron
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 aeee178..bca3dc6 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 --splay --config=$puppet_config --color false | grep -E '(^err:|^alert:|^emerg:|^crit:)'", + command => "/usr/local/sbin/puppetd --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'),','), |