Merge pull request #1828 from doktornotor/patch-7

This commit is contained in:
Renato Botelho 2015-08-28 09:29:28 -03:00
commit fc9a67bc0a

View File

@ -2438,8 +2438,13 @@ function configure_cron() {
file_put_contents("/etc/crontab", $crontab_contents);
unset($crontab_contents);
/* make sure that cron is running and start it if it got killed somehow */
if (!is_process_running("cron")) {
exec("cd /tmp && /usr/sbin/cron -s 2>/dev/null");
} else {
/* do a HUP kill to force sync changes */
sigkillbypid("{$g['varrun_path']}/cron.pid", "HUP");
sigkillbypid("{$g['varrun_path']}/cron.pid", "HUP");
}
conf_mount_ro();
}