diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2007-02-26 00:04:48 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2007-02-26 00:04:48 +0000 |
commit | a33094b53be192e74c6cd2922c0d29bcbc8fb209 (patch) | |
tree | bb41dd3172a5cde71fa36a225be5f4de78154447 | |
parent | ea1eac37bc0ee13f5e4d86d904b39589190244a9 (diff) | |
download | pfsense-a33094b53be192e74c6cd2922c0d29bcbc8fb209.zip pfsense-a33094b53be192e74c6cd2922c0d29bcbc8fb209.tar.gz |
We do not need to enforce reboots.
-rwxr-xr-x | usr/local/www/guiconfig.inc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/usr/local/www/guiconfig.inc b/usr/local/www/guiconfig.inc index 185b706..7f39ae6 100755 --- a/usr/local/www/guiconfig.inc +++ b/usr/local/www/guiconfig.inc @@ -176,8 +176,6 @@ function exec_rc_script($scriptname) { global $d_sysrebootreqd_path; - if (file_exists($d_sysrebootreqd_path)) - return 0; $execoutput = ""; $retval = ""; exec($scriptname . " >/dev/null 2>&1", $execoutput, $retval); @@ -189,8 +187,6 @@ function exec_rc_script_async($scriptname) { global $d_sysrebootreqd_path; $execoutput = ""; $retval = ""; - if (file_exists($d_sysrebootreqd_path)) - return 0; exec("nohup " . $scriptname . " >/dev/null 2>&1 &", $execoutput, $retval); return $retval; |