diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-03-31 02:03:17 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-03-31 02:03:17 +0000 |
commit | 10c2a3e50ef0d1556c155e456fdb8d99be340842 (patch) | |
tree | 8640775664fb3a0c1c33042e0d34fc509c9da423 | |
parent | b23b1f54aa52f1d9d57118bfbe0dd3c31b279a2c (diff) | |
download | pfsense-10c2a3e50ef0d1556c155e456fdb8d99be340842.zip pfsense-10c2a3e50ef0d1556c155e456fdb8d99be340842.tar.gz |
Bring up helper sh scripts non async
-rw-r--r-- | etc/inc/filter.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc index 6545311..569e663 100644 --- a/etc/inc/filter.inc +++ b/etc/inc/filter.inc @@ -168,7 +168,7 @@ function filter_configure() { $text = return_filename_as_string("/usr/local/pkg/pf/" . $file); if($text != "") { if(stristr($file, ".sh") == true) { - mwexec("/usr/local/pkg/pf/" . $file . " &"); + mwexec("/usr/local/pkg/pf/" . $file); } else { if(php_check_syntax($text, $error_message) == false) eval($text); |