diff options
author | Bill Nottingham <notting@redhat.com> | 2001-07-26 21:08:20 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2001-07-26 21:08:20 +0000 |
commit | 9a89c6d693c914f6cec6e18b86b4f18edd089829 (patch) | |
tree | 946ee1b653513dc1a58409f406ea64ba1b4b8f4d /sysconfig/network-scripts/network-functions | |
parent | c8a973a3fd0e3a6c24bdf07adb0d70abbabb5a6a (diff) | |
download | initscripts-9a89c6d693c914f6cec6e18b86b4f18edd089829.tar initscripts-9a89c6d693c914f6cec6e18b86b4f18edd089829.tar.gz initscripts-9a89c6d693c914f6cec6e18b86b4f18edd089829.tar.bz2 initscripts-9a89c6d693c914f6cec6e18b86b4f18edd089829.tar.xz initscripts-9a89c6d693c914f6cec6e18b86b4f18edd089829.zip |
- only bring link down if check_link_down fails
- add a sleep in check_link_down; some cards take time to negotiate
- only expand_config for the static IP case in ifdown
Diffstat (limited to 'sysconfig/network-scripts/network-functions')
-rw-r--r-- | sysconfig/network-scripts/network-functions | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysconfig/network-scripts/network-functions b/sysconfig/network-scripts/network-functions index f4d7a130..995f3f95 100644 --- a/sysconfig/network-scripts/network-functions +++ b/sysconfig/network-scripts/network-functions @@ -120,9 +120,9 @@ check_device_down () check_link_down () { if [ -x /sbin/mii-tool ]; then - ip link set $1 up >/dev/null 2>&1 + LC_ALL=C ip link show $1 2>/dev/null| grep -q UP || ip link set $1 up >/dev/null 2>&1 + sleep 2 output=`LC_ALL=C /sbin/mii-tool $1 2>&1` - ip link set $1 down >/dev/null 2>&1 if echo $output | grep -q "Operation not supported"; then return 1 elif echo $output | grep -q "link ok"; then |