From 78c93967260d74c3e8a35313691f931f37f871aa Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Tue, 28 Oct 2008 11:10:07 -0400 Subject: Accept either the '+', or comma-separated addresses for arp_ip_target. (#467954, ) This allows configurations created before we added support for comma-separated addresses to still work. --- sysconfig/network-scripts/ifup-eth | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sysconfig/network-scripts') diff --git a/sysconfig/network-scripts/ifup-eth b/sysconfig/network-scripts/ifup-eth index b32d1c1f..f3996ce7 100755 --- a/sysconfig/network-scripts/ifup-eth +++ b/sysconfig/network-scripts/ifup-eth @@ -113,7 +113,7 @@ if [ "$ISALIAS" = no ] && is_bonding_device ${DEVICE} ; then for arg in $BONDING_OPTS ; do key=${arg%%=*}; value=${arg##*=}; - if [ "${key}" = "arp_ip_target" ]; then + if [ "${key}" = "arp_ip_target" -a "${value:0:1}" != "+" ]; then OLDIFS=$IFS; IFS=','; for arp_ip in $value; do -- cgit v1.2.1