diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-08-14 18:32:07 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-08-14 18:32:07 +0000 |
commit | 27b62c6e7a024df8ee1e3d3a141b3efb0400a431 (patch) | |
tree | 6dd878dae70f27a703233a846fa2f47d29c2ef0d /etc | |
parent | b987875fbfbab574f6232f975c02544f2a6946a4 (diff) | |
download | pfsense-27b62c6e7a024df8ee1e3d3a141b3efb0400a431.zip pfsense-27b62c6e7a024df8ee1e3d3a141b3efb0400a431.tar.gz |
Destroy interfaces.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/pfsense-utils.inc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/etc/inc/pfsense-utils.inc b/etc/inc/pfsense-utils.inc index 8724ebc..f71bdcb 100644 --- a/etc/inc/pfsense-utils.inc +++ b/etc/inc/pfsense-utils.inc @@ -50,8 +50,7 @@ function reset_carp() { mwexec("/sbin/sysctl net.inet.carp.allow=0"); for($x=0; $x<$carp_counter; $x++) { mwexec("/sbin/ifconfig carp{$x} down"); - /* do not destroy, freebsd bug lurks */ - //mwexec("/sbin/ifconfig carp{$x} destroy"); + mwexec("/sbin/ifconfig carp{$x} destroy"); } find_number_of_created_carp_interfaces(true); sleep(1); |