From 9f29ebca4d38fc6553712124795695bbe6726d1f Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 14 Jul 2004 19:25:24 +0000 Subject: fix bonding + no IP (#127825) --- sysconfig/network-scripts/ifup | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sysconfig/network-scripts/ifup b/sysconfig/network-scripts/ifup index 9e89dbd5..8e1026a7 100755 --- a/sysconfig/network-scripts/ifup +++ b/sysconfig/network-scripts/ifup @@ -287,6 +287,13 @@ else if [ -z "${IPADDR}" ]; then # enable device without IP, useful for e.g. PPPoE ip link set dev ${REALDEVICE} up + # Bonding initialization part II + if [ "${TYPE}" = "Bonding" ] || ethtool -i $DEVICE 2>/dev/null| grep -q "driver: bonding" ; then + for device in `fgrep -l "MASTER=${DEVICE}" /etc/sysconfig/network-scripts/ifcfg-*` ; do + /sbin/ifup ${device##*/} + done + fi + if [ "${NETWORKING_IPV6}" = "yes" ]; then /etc/sysconfig/network-scripts/ifup-ipv6 ${CONFIG} fi -- cgit