diff options
author | Nicolas Lécureuil <neoclust@mageia.org> | 2017-04-20 16:21:45 +0200 |
---|---|---|
committer | Nicolas Lécureuil <neoclust@mageia.org> | 2017-04-20 16:21:57 +0200 |
commit | 890509003314d02b97e57404b6f7f1afbb89e17b (patch) | |
tree | 008d6ab92f2424af125b619cbf5300dd221af031 /modules/bugzilla/manifests | |
parent | 54b31fa6983f17d6d0b325cee1a0710147f497b0 (diff) | |
download | puppet-890509003314d02b97e57404b6f7f1afbb89e17b.tar puppet-890509003314d02b97e57404b6f7f1afbb89e17b.tar.gz puppet-890509003314d02b97e57404b6f7f1afbb89e17b.tar.bz2 puppet-890509003314d02b97e57404b6f7f1afbb89e17b.tar.xz puppet-890509003314d02b97e57404b6f7f1afbb89e17b.zip |
bugzilla: Fix use of collectstats.pl
Diffstat (limited to 'modules/bugzilla/manifests')
-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 4d2556c0..1f08a040 100755 --- a/modules/bugzilla/manifests/init.pp +++ b/modules/bugzilla/manifests/init.pp @@ -173,8 +173,8 @@ class bugzilla { } cron { 'collectstats': - command => "$bugzilla_location/bin/collectstats.pl", - user => 'apache', + command => "$bugzilla_location/collectstats.pl", + user => 'root', hour => 2, minute => 30, } |