From c0784ea8774e2f56d6775b9a54e728ecad53361f Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 14 Jul 2004 19:23:22 +0000 Subject: fix bonding + no IP (#127285) --- sysconfig/network-scripts/ifup | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'sysconfig') diff --git a/sysconfig/network-scripts/ifup b/sysconfig/network-scripts/ifup index 4f8c2ad4..41d8821a 100755 --- a/sysconfig/network-scripts/ifup +++ b/sysconfig/network-scripts/ifup @@ -323,6 +323,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 v1.2.1