diff options
author | Nicolas Lécureuil <neoclust@mageia.org> | 2017-08-01 19:54:03 +0200 |
---|---|---|
committer | Nicolas Lécureuil <neoclust@mageia.org> | 2017-08-01 19:54:03 +0200 |
commit | 6157434ceb83de078bd63a396713b5625931fb31 (patch) | |
tree | daf8c820313f83bd5767be1fc862454bb14e5a7e /modules | |
parent | 94056df5fe45991d80fd85cb71713d7c310512a9 (diff) | |
download | puppet-6157434ceb83de078bd63a396713b5625931fb31.tar puppet-6157434ceb83de078bd63a396713b5625931fb31.tar.gz puppet-6157434ceb83de078bd63a396713b5625931fb31.tar.bz2 puppet-6157434ceb83de078bd63a396713b5625931fb31.tar.xz puppet-6157434ceb83de078bd63a396713b5625931fb31.zip |
Try to fix cron (2)
Diffstat (limited to 'modules')
-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 71aadabb..c07d4ea2 100755 --- a/modules/bugzilla/manifests/init.pp +++ b/modules/bugzilla/manifests/init.pp @@ -173,14 +173,14 @@ class bugzilla { } cron { 'collectstats': - command => "cd $bugzilla_location && collectstats.pl", + command => "cd $bugzilla_location && ./collectstats.pl", user => 'root', hour => 2, minute => 30, } cron { 'clean-bug-user-last-visit': - command => "cd $bugzilla_location && clean-bug-user-last-visit.pl", + command => "cd $bugzilla_location && ./clean-bug-user-last-visit.pl", user => 'apache', hour => 3, minute => 0, |