浏览代码

Disable wifi when interface is known

Bob Mottram 8 年前
父节点
当前提交
657110355f
共有 1 个文件被更改,包括 5 次插入5 次删除
  1. 5
    5
      src/freedombone-wifi

+ 5
- 5
src/freedombone-wifi 查看文件

@@ -458,11 +458,6 @@ if [ $NETWORKS_INTERACTIVE ]; then
458 458
     exit 0
459 459
 fi
460 460
 
461
-if [ $WIFI_DISABLE ]; then
462
-    disable_wifi $WIFI_DISABLE
463
-    exit 0
464
-fi
465
-
466 461
 if [ ! $wifi_interface_specified= ]; then
467 462
     update_wifi_adaptors
468 463
     if [ ! $IFACE ]; then
@@ -472,6 +467,11 @@ if [ ! $wifi_interface_specified= ]; then
472 467
     WIFI_INTERFACE=$IFACE
473 468
 fi
474 469
 
470
+if [ $WIFI_DISABLE ]; then
471
+    disable_wifi $WIFI_DISABLE
472
+    exit 0
473
+fi
474
+
475 475
 if [ -f $WIFI_NETWORKS_FILE ]; then
476 476
     networks_from_file
477 477
     exit 0