diff options
author | Bill Nottingham <notting@redhat.com> | 2002-08-14 22:34:35 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2002-08-14 22:34:35 +0000 |
commit | afe380bbf840515033ad61a06573a72f0cd0f3a1 (patch) | |
tree | 7a00dbb17b30dc0fc04904f06f13b7899dd9bd62 /sysconfig | |
parent | 45976c791bf80ce3a53116386096e0a9fb157ef1 (diff) | |
download | initscripts-afe380bbf840515033ad61a06573a72f0cd0f3a1.tar initscripts-afe380bbf840515033ad61a06573a72f0cd0f3a1.tar.gz initscripts-afe380bbf840515033ad61a06573a72f0cd0f3a1.tar.bz2 initscripts-afe380bbf840515033ad61a06573a72f0cd0f3a1.tar.xz initscripts-afe380bbf840515033ad61a06573a72f0cd0f3a1.zip |
sleep 5 seconds, not 2
Diffstat (limited to 'sysconfig')
-rw-r--r-- | sysconfig/network-scripts/network-functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysconfig/network-scripts/network-functions b/sysconfig/network-scripts/network-functions index f0c4a08d..57e47f23 100644 --- a/sysconfig/network-scripts/network-functions +++ b/sysconfig/network-scripts/network-functions @@ -133,7 +133,7 @@ check_link_down () if [ -x /sbin/mii-tool ]; then LC_ALL=C ip link show $1 2>/dev/null| grep -q UP || ip link set $1 up >/dev/null 2>&1 # wait for link to come up - sleep 2 + sleep 5 /sbin/mii-tool >/dev/null 2>&1 || return 1 output=`LC_ALL=C /sbin/mii-tool $1 2>&1` if echo $output | grep -q "Operation not supported"; then |