diff options
author | Chris Buechler <cmb@pfsense.org> | 2014-11-11 00:03:23 -0600 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2014-11-11 00:03:23 -0600 |
commit | 0b7dbebe406f559432f928c8208b6c5cef607e22 (patch) | |
tree | 635bd99b71b326ccccbb94ef25e630f7f7d1b63c /etc/inc/interfaces.inc | |
parent | 5f4f83652fca8329b212bd4ee6d8c6c8fa0c9a22 (diff) | |
download | pfsense-0b7dbebe406f559432f928c8208b6c5cef607e22.zip pfsense-0b7dbebe406f559432f928c8208b6c5cef607e22.tar.gz |
touch up text
Diffstat (limited to 'etc/inc/interfaces.inc')
-rw-r--r-- | etc/inc/interfaces.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/inc/interfaces.inc b/etc/inc/interfaces.inc index 576b3aa..aa6bad2 100644 --- a/etc/inc/interfaces.inc +++ b/etc/inc/interfaces.inc @@ -2226,14 +2226,14 @@ function interface_carp_configure(&$vip) { /* Ensure a IP on this interface exists prior to configuring CARP. */ $ww_subnet_ip = find_interface_ip($realif); if (!is_ipaddrv4($ww_subnet_ip)) { - file_notice("CARP", sprintf(gettext("Sorry but we could not find a required assigned ip address on the interface for the virtual IP address %s."), $vip['subnet']), "Firewall: Virtual IP", ""); + file_notice("CARP", sprintf(gettext("Interface does not have required IP address in the subnet of virtual IP address %s. Skipping this VIP."), $vip['subnet']), "Firewall: Virtual IP", ""); return; } } else if (is_ipaddrv6($vip['subnet'])) { /* Ensure a IP on this interface exists prior to configuring CARP. */ $ww_subnet_ip = find_interface_ipv6($realif); if (!is_ipaddrv6($ww_subnet_ip)) { - file_notice("CARP", sprintf(gettext("Sorry but we could not find a required assigned ip address on the interface for the virtual IPv6 address %s."), $vip['subnet']), "Firewall: Virtual IP", ""); + file_notice("CARP", sprintf(gettext("Interface does not have required IPv6 address in the subnet of virtual IPv6 address %s. Skipping this VIP."), $vip['subnet']), "Firewall: Virtual IP", ""); return; } } |