From 6157434ceb83de078bd63a396713b5625931fb31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C3=A9cureuil?= Date: Tue, 1 Aug 2017 19:54:03 +0200 Subject: Try to fix cron (2) --- modules/bugzilla/manifests/init.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/bugzilla/manifests/init.pp') 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, -- cgit v1.2.1