diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-02-25 22:09:48 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-02-25 22:09:48 +0000 |
commit | d836899344ba232bcec1f197a9cbf4786885c56c (patch) | |
tree | 37d28ca1ebde8bc45014fcdf51924e1840b44ae4 /etc/rc.bootup | |
parent | afde8c220c0123c3f874a24704f92744002b8208 (diff) | |
download | pfsense-d836899344ba232bcec1f197a9cbf4786885c56c.zip pfsense-d836899344ba232bcec1f197a9cbf4786885c56c.tar.gz |
Use system instead of mwexec
Diffstat (limited to 'etc/rc.bootup')
-rwxr-xr-x | etc/rc.bootup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/rc.bootup b/etc/rc.bootup index f41a8bd..25d71e8 100755 --- a/etc/rc.bootup +++ b/etc/rc.bootup @@ -48,7 +48,7 @@ if(does_interface_exist($lan_if) == false) $do_assign = 1; if(does_interface_exist($wan_if) == false) $do_assign = 1; - if($do_assign == 1) mwexec("/etc/rc.initial.setports"); + if($do_assign == 1) system("/etc/rc.initial.setports"); /* convert configuration, if necessary */ convert_config(); |