mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Merge pull request #1828 from doktornotor/patch-7
This commit is contained in:
commit
fc9a67bc0a
@ -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();
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user