diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-09-27 22:21:54 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-09-27 22:21:54 +0000 |
commit | 7fbe86c3975342dc5bbcb1fac4c329b7883aa9c0 (patch) | |
tree | a176488eaf8883ddbd986b41260aa3b1e0e4a50c | |
parent | 727a2b918e03c1d2a1b4cf33eb52771bcd83a996 (diff) | |
download | pfsense-7fbe86c3975342dc5bbcb1fac4c329b7883aa9c0.zip pfsense-7fbe86c3975342dc5bbcb1fac4c329b7883aa9c0.tar.gz |
Do not use syncdev and syncif... Use syncdev.
-rw-r--r-- | etc/inc/interfaces.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/etc/inc/interfaces.inc b/etc/inc/interfaces.inc index 8de8a7d..72723f8 100644 --- a/etc/inc/interfaces.inc +++ b/etc/inc/interfaces.inc @@ -325,7 +325,9 @@ function interfaces_carp_configure() { echo "Bringing up pfsync0.\n"; mwexec("/sbin/ifconfig pfsync0 create"); mwexec("/sbin/ifconfig pfsync0 syncdev " . $carp_sync_int); - mwexec("/sbin/ifconfig pfsync0 syncif " . $carp_sync_int); + if($debugging) + echo "Bringing up syncif pfsync0.\n"; + mwexec("/sbin/ifconfig pfsync0 up"); } if($g['booting']) { |