diff options
-rw-r--r-- | initscripts.spec | 1 | ||||
-rwxr-xr-x | sysconfig/network-scripts/ifdown-eth | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/initscripts.spec b/initscripts.spec index 72ebbffd..930c676a 100644 --- a/initscripts.spec +++ b/initscripts.spec @@ -201,6 +201,7 @@ rm -rf $RPM_BUILD_ROOT %changelog - add bridging docs (#221412, <markmc@redhat.com>) +- release bonding slaves properly (#220525) * Tue Dec 19 2006 Bill Nottingham <notting@redhat.com> 8.49-1 - rc.sysinit: remove raidautorn (#219226) diff --git a/sysconfig/network-scripts/ifdown-eth b/sysconfig/network-scripts/ifdown-eth index efcd13d8..c0de20e5 100755 --- a/sysconfig/network-scripts/ifdown-eth +++ b/sysconfig/network-scripts/ifdown-eth @@ -37,6 +37,7 @@ fi # Check to make sure the device is actually up check_device_down ${DEVICE} && [ "$BOOTPROTO" != "dhcp" -a "$BOOTPROTO" != "bootp" ] && [ -n "$VLAN" -a "$VLAN" != "yes" ] && exit 0 +if [ "${SLAVE}" != "yes" -o -z "${MASTER}" ]; then if [ -n "${HWADDR}" -a -z "${MACADDR}" ]; then FOUNDMACADDR=`get_hwaddr ${REALDEVICE}` if [ -n "${FOUNDMACADDR}" -a "${FOUNDMACADDR}" != "${HWADDR}" ]; then @@ -49,6 +50,7 @@ if [ -n "${HWADDR}" -a -z "${MACADDR}" ]; then fi fi fi +fi if is_bonding_device ${DEVICE} ; then for device in `LANG=C grep -l "^[[:space:]]*MASTER=${DEVICE}" /etc/sysconfig/network-scripts/ifcfg-*` ; do |