aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xsysconfig/network-scripts/ifup-wireless7
1 files changed, 4 insertions, 3 deletions
diff --git a/sysconfig/network-scripts/ifup-wireless b/sysconfig/network-scripts/ifup-wireless
index 36bfd8c5..18416b1b 100755
--- a/sysconfig/network-scripts/ifup-wireless
+++ b/sysconfig/network-scripts/ifup-wireless
@@ -36,13 +36,14 @@
# Only meant to be called from ifup.
-# Set link up (some cards require this.)
-/sbin/ip link set dev ${DEVICE} up
-
# Mode need to be first : some settings apply only in a specific mode !
if [ -n "$MODE" ] ; then
iwconfig $DEVICE mode $MODE
fi
+
+# Set link up (some cards require this.)
+/sbin/ip link set dev ${DEVICE} up
+
# This is a bit hackish, but should do the job right...
if [ -n "$ESSID" -o -n "$MODE" ] ; then
NICKNAME=`/bin/hostname`