summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Marquette <billm@pfsense.org>2006-10-28 01:43:22 +0000
committerBill Marquette <billm@pfsense.org>2006-10-28 01:43:22 +0000
commit16403b3ab4c8beb32bbda1f764c49eccf9799fe5 (patch)
tree05aa56e23ffee89cd74136337a3d365552877e16
parentd28345633401cf9a7e1957ec4fa6851fb1f8ed03 (diff)
downloadpfsense-16403b3ab4c8beb32bbda1f764c49eccf9799fe5.zip
pfsense-16403b3ab4c8beb32bbda1f764c49eccf9799fe5.tar.gz
Only check for check_reload_status process if machine is booted
rc scripts launch this process at the end of boot
-rw-r--r--etc/inc/filter.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc
index 8c08aca..241ce82 100644
--- a/etc/inc/filter.inc
+++ b/etc/inc/filter.inc
@@ -66,7 +66,7 @@ function filter_configure() {
}
global $g;
/* Make sure that the checker process is running */
- if(!is_process_running("check_reload_status"))
+ if(!$g['booting'] && !is_process_running("check_reload_status"))
mwexec_bg("/usr/bin/nice -n20 /usr/local/sbin/check_reload_status 2>/dev/null");
touch($g['tmp_path'] . "/filter_dirty");
}
OpenPOWER on IntegriCloud