We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 793f323 commit 3c86639Copy full SHA for 3c86639
install/lib/installer_base.lib.php
@@ -1544,8 +1544,8 @@ public function install_crontab() {
1544
}
1545
1546
$root_cron_jobs = array(
1547
- "* * * * * $install_dir/server/server.sh > /dev/null 2>> $conf['ispconfig_log_dir']/cron.log",
1548
- "30 00 * * * $install_dir/server/cron_daily.sh > /dev/null 2>> $conf['ispconfig_log_dir']/cron.log"
+ "* * * * * ".$install_dir."/server/server.sh > /dev/null 2>> ".$conf['ispconfig_log_dir']."/cron.log",
+ "30 00 * * * ".$install_dir."/server/cron_daily.sh > /dev/null 2>> ".$conf['ispconfig_log_dir']."/cron.log"
1549
);
1550
foreach($root_cron_jobs as $cron_job) {
1551
if(!in_array($cron_job."\n", $existing_root_cron_jobs)) {
0 commit comments