diff options
author | Nicolas Vigier <boklm@mageia.org> | 2013-09-21 14:37:15 +0000 |
---|---|---|
committer | Nicolas Vigier <boklm@mageia.org> | 2013-09-21 14:37:15 +0000 |
commit | c6928fe90637594b90e3644be611b254d9867335 (patch) | |
tree | ec780018858a2d470278df19c05f9428d5657e5b /modules/bugzilla | |
parent | 2a705e2b3118a6b4680448c004a2f04edfd21da8 (diff) | |
download | puppet-c6928fe90637594b90e3644be611b254d9867335.tar puppet-c6928fe90637594b90e3644be611b254d9867335.tar.gz puppet-c6928fe90637594b90e3644be611b254d9867335.tar.bz2 puppet-c6928fe90637594b90e3644be611b254d9867335.tar.xz puppet-c6928fe90637594b90e3644be611b254d9867335.zip |
bugzilla: add collectstats cron job (#3288)
Diffstat (limited to 'modules/bugzilla')
-rw-r--r-- | modules/bugzilla/manifests/init.pp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/bugzilla/manifests/init.pp b/modules/bugzilla/manifests/init.pp index 9f19272f..33a67ce0 100644 --- a/modules/bugzilla/manifests/init.pp +++ b/modules/bugzilla/manifests/init.pp @@ -84,4 +84,11 @@ class bugzilla { content => template('bugzilla/robots.txt'), require => Package['bugzilla-extension-sitemap'], } + + cron { 'collectstats': + command => '/usr/share/bugzilla/bin/collectstats.pl', + user => 'apache', + hour => 2, + minute => 30, + } } |