diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2007-05-21 17:20:43 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2007-05-21 17:20:43 +0000 |
commit | d055663459b4558d4096fcb7372fb981c39b30fc (patch) | |
tree | e90a4976e832388ea35fcc88751d8fe1bf17c844 /etc | |
parent | cf79d727cd54e5d2f2dd5d6d3cbab001b704f817 (diff) | |
download | pfsense-d055663459b4558d4096fcb7372fb981c39b30fc.zip pfsense-d055663459b4558d4096fcb7372fb981c39b30fc.tar.gz |
Don't check carp settings, check if vip addresses exist.
Diffstat (limited to 'etc')
-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 7739981..c77eeb6 100644 --- a/etc/inc/interfaces.inc +++ b/etc/inc/interfaces.inc @@ -461,7 +461,7 @@ function interfaces_carp_bring_up_final() { $mt = microtime(); echo "interfaces_carp_bring_up_final() being called $mt\n"; } - if(!$config['installedpackages']['carpsettings']['config']) + if(!$config['virtualip']['vip']) return; $viparr = &$config['virtualip']['vip']; /* could not locate an array, return */ |