aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2004-06-08 20:06:00 +0000
committerBill Nottingham <notting@redhat.com>2004-06-08 20:06:00 +0000
commit70b3cab2480402e2444e142c8a75e16aa9054a48 (patch)
tree134223f4216afbf74bf13b31485c853e6a4b41fe
parentae7b881b736e98d0137e8c2dccdce2d6332f3a73 (diff)
downloadinitscripts-70b3cab2480402e2444e142c8a75e16aa9054a48.tar
initscripts-70b3cab2480402e2444e142c8a75e16aa9054a48.tar.gz
initscripts-70b3cab2480402e2444e142c8a75e16aa9054a48.tar.bz2
initscripts-70b3cab2480402e2444e142c8a75e16aa9054a48.tar.xz
initscripts-70b3cab2480402e2444e142c8a75e16aa9054a48.zip
clean up errors
-rwxr-xr-xsysconfig/network-scripts/ifup2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysconfig/network-scripts/ifup b/sysconfig/network-scripts/ifup
index 2cb24bb0..1b48685b 100755
--- a/sysconfig/network-scripts/ifup
+++ b/sysconfig/network-scripts/ifup
@@ -402,7 +402,7 @@ if [ "${TYPE}" = "Bonding" ] || ethtool -i $DEVICE 2>/dev/null| grep -q "driver
DEV=$DEVICE
eval $(LANG=C fgrep "DEVICE=" $device)
ip link set ${DEVICE} up
- ip route flush dev ${DEVICE}
+ ip route flush dev ${DEVICE} >/dev/null 2>&1
DEVICE=$DEV
fi
done