diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2009-10-19 23:18:06 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2009-10-19 23:18:06 -0400 |
commit | c8914ce69416c1f9eeee3f91ffb0604243b6c8aa (patch) | |
tree | 81e93e658038c3fd0ad55ad737a20c48286c5cd2 /etc/inc/interfaces.inc | |
parent | bb992eb3c6364b2b7f6ed064a0bc2c7e0f12a549 (diff) | |
download | pfsense-c8914ce69416c1f9eeee3f91ffb0604243b6c8aa.zip pfsense-c8914ce69416c1f9eeee3f91ffb0604243b6c8aa.tar.gz |
Use sh -c
Diffstat (limited to 'etc/inc/interfaces.inc')
-rw-r--r-- | etc/inc/interfaces.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/interfaces.inc b/etc/inc/interfaces.inc index 62e2a13..f8542a3 100644 --- a/etc/inc/interfaces.inc +++ b/etc/inc/interfaces.inc @@ -905,7 +905,7 @@ function interface_ppp_configure($ifcfg) { } $rclinkup = "default:\n"; - $rclinkup.= "! /etc/rc.filter_configure_sync"; + $rclinkup.= "! sh -c \"/etc/rc.filter_configure_sync\""; // Write out configuration for ppp.conf file_put_contents("/etc/ppp/ppp.conf", $peerfile); |