diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2010-12-10 13:54:54 -0500 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2010-12-10 13:55:04 -0500 |
commit | 9e18b39240bc7bfccffd1943ac00aaa8dfbf736c (patch) | |
tree | 4c1711f9a5347c551582e4322c2c47970912cbf9 | |
parent | d12654441c93299c0c6cd3f163c9976390e082e8 (diff) | |
download | pfsense-9e18b39240bc7bfccffd1943ac00aaa8dfbf736c.zip pfsense-9e18b39240bc7bfccffd1943ac00aaa8dfbf736c.tar.gz |
Do not call rc.newwanip on bootup. Remove bogus return 0;
-rwxr-xr-x | etc/rc.newwanip | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/etc/rc.newwanip b/etc/rc.newwanip index e2213fa..58da7fa 100755 --- a/etc/rc.newwanip +++ b/etc/rc.newwanip @@ -41,6 +41,10 @@ require_once("ipsec.inc"); require_once("vpn.inc"); require_once("openvpn.inc"); +// Do not process while booting +if($g['booting']) + exit; + /* Interface IP address has changed */ $argument = str_replace("\n", "", $argv[1]); @@ -115,5 +119,4 @@ mwexec_bg("/usr/local/sbin/ntpdate_sync_once.sh"); mwexec_bg("/etc/rc.start_packages"); log_error("{$g['product_name']} package system has detected an ip change $oldip -> $curwanip ... Restarting packages."); -return 0; -?> +?>
\ No newline at end of file |