diff options
author | Nicolas Lécureuil <neoclust@mageia.org> | 2017-05-01 22:24:33 +0200 |
---|---|---|
committer | Nicolas Lécureuil <neoclust@mageia.org> | 2017-05-01 22:24:33 +0200 |
commit | a38058d5e8bcb608d2e66bf42260d22e60e25a89 (patch) | |
tree | db255effd70739cb693acfe03b067793f30b1adc /modules/bugzilla | |
parent | 364fdd538cff00c7808de9de17296954b66e3137 (diff) | |
download | puppet-a38058d5e8bcb608d2e66bf42260d22e60e25a89.tar puppet-a38058d5e8bcb608d2e66bf42260d22e60e25a89.tar.gz puppet-a38058d5e8bcb608d2e66bf42260d22e60e25a89.tar.bz2 puppet-a38058d5e8bcb608d2e66bf42260d22e60e25a89.tar.xz puppet-a38058d5e8bcb608d2e66bf42260d22e60e25a89.zip |
bugzilla : Fix crontab
Diffstat (limited to 'modules/bugzilla')
-rwxr-xr-x | modules/bugzilla/manifests/init.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/bugzilla/manifests/init.pp b/modules/bugzilla/manifests/init.pp index 367b52e4..0e7466e1 100755 --- a/modules/bugzilla/manifests/init.pp +++ b/modules/bugzilla/manifests/init.pp @@ -186,8 +186,8 @@ class bugzilla { minute => 0, } cron { 'sanitycheck': - command => "$bugzilla_location/sanitycheck.pl --login LpSolit@netscape.net", - user => 'apache', + command => "cd $bugzilla_location && $bugzilla_location/sanitycheck.pl --login LpSolit@netscape.net", + user => 'root', hour => 21, minute => 0, } |