diff options
Diffstat (limited to 'src/connections/ethernet')
-rw-r--r-- | src/connections/ethernet | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/src/connections/ethernet b/src/connections/ethernet index 6ac3b65..e24e9f5 100644 --- a/src/connections/ethernet +++ b/src/connections/ethernet @@ -12,17 +12,12 @@ ethernet_up() { fi ip link set $INTERFACE up + sleep 1 - let timeout=0 - until ip link show $INTERFACE|grep -q "state UP" - do - sleep 0.5 - let timeout++ - if [[ $timeout -eq 5 ]]; then - err_append "No connection" - return 1 - fi - done + if ip link show $INTERFACE|grep -q "NO-CARRIER"; then + err_append "No connection" + return 1 + fi if checkyesno "${AUTH8021X:-no}"; then . "${SUBR_DIR}"/8021x |