From 986f1c417b3a33e6965641af0a51220d93428f2c Mon Sep 17 00:00:00 2001 From: redray <redray@ispconfig3> Date: Sun, 21 Dec 2008 14:06:04 +0000 Subject: [PATCH] cron errors got to logfile now - bugfix --- install/lib/installer_base.lib.php | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/install/lib/installer_base.lib.php b/install/lib/installer_base.lib.php index 2332a8463d..a855571be5 100644 --- a/install/lib/installer_base.lib.php +++ b/install/lib/installer_base.lib.php @@ -1042,12 +1042,9 @@ class installer_base { if(stristr($val,'/usr/local/ispconfig')) unset($existing_root_cron_jobs[$key]); } - // Crontab must end with an empty line or comment! $root_cron_jobs = array( - '# --- ISPConfig ----', - '* * * * * /usr/local/ispconfig/server/server.sh > /dev/null 2>> /var/log/var/log/ispconfig/cron.log', - '30 00 * * * /usr/local/ispconfig/server/cron_daily.sh > /dev/null 2>> /var/log/var/log/ispconfig/cron.log', - '# ------------------' + '* * * * * /usr/local/ispconfig/server/server.sh > /dev/null 2>> /var/log/ispconfig/cron.log', + '30 00 * * * /usr/local/ispconfig/server/cron_daily.sh > /dev/null 2>> /var/log/ispconfig/cron.log' ); foreach($root_cron_jobs as $cron_job) { if(!in_array($cron_job."\n", $existing_root_cron_jobs)) { @@ -1064,11 +1061,8 @@ class installer_base { exec('crontab -u getmail -l > crontab.txt'); $existing_cron_jobs = file('crontab.txt'); - // Crontab must end with an empty line or comment! $cron_jobs = array( - '# --- ISPConfig ----', - '*/5 * * * * '.$cf['program'].' -g '.$cf['config_dir'].' -r '.$cf['config_dir'].'/*.conf > /dev/null 2>> /var/log/var/log/ispconfig/cron.log', - '# ------------------' + '*/5 * * * * '.$cf['program'].' -g '.$cf['config_dir'].' -r '.$cf['config_dir'].'/*.conf > /dev/null 2>> /var/log/ispconfig/cron.log' ); // remove existing ispconfig cronjobs, in case the syntax has changed -- GitLab