diff options
author | Bill Nottingham <notting@redhat.com> | 2003-09-05 19:33:48 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2003-09-05 19:33:48 +0000 |
commit | 2db94baea1ccd3495f13b99bf39e303050d955e0 (patch) | |
tree | 8bb936d4a2213336fb9b053f3d83bc8ff24bb853 | |
parent | 990d2c50821c277c06d887ab390454702bc76438 (diff) | |
download | initscripts-2db94baea1ccd3495f13b99bf39e303050d955e0.tar initscripts-2db94baea1ccd3495f13b99bf39e303050d955e0.tar.gz initscripts-2db94baea1ccd3495f13b99bf39e303050d955e0.tar.bz2 initscripts-2db94baea1ccd3495f13b99bf39e303050d955e0.tar.xz initscripts-2db94baea1ccd3495f13b99bf39e303050d955e0.zip |
revert - bringing up bonding interfaces last doesn't work
-rwxr-xr-x | rc.d/init.d/network | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/rc.d/init.d/network b/rc.d/init.d/network index 612238ce..f31becec 100755 --- a/rc.d/init.d/network +++ b/rc.d/init.d/network @@ -97,7 +97,6 @@ case "$1" in sysctl -w kernel.hotplug="/bin/true" > /dev/null 2>&1 cipeinterfaces="" - bondinterfaces="" xdslinterfaces="" # bring up all other interfaces configured to come up at boot time @@ -110,10 +109,6 @@ case "$1" in cipeinterfaces="$cipeinterfaces $DEVICE" continue fi - if [ "${DEVICE##bond}" != "$DEVICE" ] ; then - bondinterfaces="$bondinterfaces $DEVICE" - continue - fi if [ "$TYPE" = "xDSL" ]; then xdslinterfaces="$xdslinterfaces $DEVICE" continue @@ -132,8 +127,8 @@ case "$1" in action $"Bringing up interface $i: " ./ifup $i boot done - # Bring up xDSL, CIPE, and bonding interfaces - for i in $xdslinterfaces $cipeinterfaces $bondinterfaces ; do + # Bring up xDSL and CIPE interfaces + for i in $xdslinterfaces $cipeinterfaces ; do if ! LANG=C egrep -L "^ONBOOT=['\"]?[Nn][Oo]['\"]?" ifcfg-$i >/dev/null 2>&1 ; then # If we're in confirmation mode, get user confirmation. if [ -f /var/run/confirm ]; then |