diff options
-rwxr-xr-x | mandriva/network-up | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mandriva/network-up b/mandriva/network-up index a4d8e9b8..79f9084d 100755 --- a/mandriva/network-up +++ b/mandriva/network-up @@ -102,9 +102,9 @@ function should_wait_network() { # ignore devices that are not present ip -o link show ${DEVICE} &>/dev/null || continue - ! is_false $NM_CONTROLLED && is_nm_running && USE_NM=true + ! is_false $NM_CONTROLLED && is_nm_running && _use_nm=true # for NM controlled just ask NetworkManager - if [ "$USE_NM" = "true" ]; then + if [ "$_use_nm" = "true" ]; then # Ignore disabled wifi h/w if is_nm_device_unavailable ${DEVICE}; then # Question: Is NM cleverer than us here? Does it do this delay |