diff options
author | Bill Nottingham <notting@redhat.com> | 2001-07-31 17:55:36 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2001-07-31 17:55:36 +0000 |
commit | 807d28bf2191ce20975ac3c6f7e7be3f988cb8e4 (patch) | |
tree | b18ed3e97211ed1425d3a222f76fa542da2e01a2 | |
parent | f2c9e615c313c192bc1f9ee31bac21185ba4348e (diff) | |
download | initscripts-807d28bf2191ce20975ac3c6f7e7be3f988cb8e4.tar initscripts-807d28bf2191ce20975ac3c6f7e7be3f988cb8e4.tar.gz initscripts-807d28bf2191ce20975ac3c6f7e7be3f988cb8e4.tar.bz2 initscripts-807d28bf2191ce20975ac3c6f7e7be3f988cb8e4.tar.xz initscripts-807d28bf2191ce20975ac3c6f7e7be3f988cb8e4.zip |
don't check for the link to be down; it's not reliable enough
-rwxr-xr-x | sysconfig/network-scripts/ifup | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/sysconfig/network-scripts/ifup b/sysconfig/network-scripts/ifup index 9b10512f..303fe33e 100755 --- a/sysconfig/network-scripts/ifup +++ b/sysconfig/network-scripts/ifup @@ -147,11 +147,6 @@ if [ -n "${DYNCONFIG}" ]; then DHCPCDARGS="${DHCPCDARGS} -R" fi echo -n $"Determining IP information for ${DEVICE}..." - if check_link_down ${DEVICE}; then - echo $" failed; no link present. Check cable?" - ip link set down ${DEVICE} >/dev/null 2>&1 - exit 1 - fi # DHCP clients need DNS to be available, and we don't know # what DNS server they're using until they are done. |