diff options
author | Pascal Terjan <pterjan@mageia.org> | 2017-12-24 18:40:27 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mageia.org> | 2017-12-24 18:40:27 +0000 |
commit | fd71ab97a263ab401881495f12d19e92df1df3be (patch) | |
tree | ed8b66486514435c776bfb68efd8ef6a6d1d477c /modules/bugzilla/manifests | |
parent | 21b498081fbbe2b7491211b6007ca57a0e16ec97 (diff) | |
download | puppet-fd71ab97a263ab401881495f12d19e92df1df3be.tar puppet-fd71ab97a263ab401881495f12d19e92df1df3be.tar.gz puppet-fd71ab97a263ab401881495f12d19e92df1df3be.tar.bz2 puppet-fd71ab97a263ab401881495f12d19e92df1df3be.tar.xz puppet-fd71ab97a263ab401881495f12d19e92df1df3be.zip |
Run bugzilla crons as apache
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 1d1fd8a0..8d16d693 100755 --- a/modules/bugzilla/manifests/init.pp +++ b/modules/bugzilla/manifests/init.pp @@ -180,7 +180,7 @@ class bugzilla { cron { 'collectstats': command => "cd $bugzilla_location && ./collectstats.pl", - user => 'root', + user => 'apache', hour => 2, minute => 30, } @@ -193,7 +193,7 @@ class bugzilla { } cron { 'sanitycheck': command => "cd $bugzilla_location && $bugzilla_location/sanitycheck.pl --login LpSolit@netscape.net", - user => 'root', + user => 'apache', hour => 21, minute => 0, } |