浏览代码

Since it's not yet working exclude the tor dongle option

Bob Mottram 10 年前
父节点
当前提交
c840f94034
共有 1 个文件被更改,包括 2 次插入4 次删除
  1. 2
    4
      src/freedombone

+ 2
- 4
src/freedombone 查看文件

@@ -484,7 +484,7 @@ function interactive_configuration {
484 484
   data=$(tempfile 2>/dev/null)
485 485
   trap "rm -f $data" 0 1 2 5 15
486 486
   dialog --backtitle "Freedombone Configuration" \
487
-      --radiolist "Type of Installation:" 15 40 9 \
487
+      --radiolist "Type of Installation:" 15 40 8 \
488 488
       1 Full on \
489 489
       2 Writer off \
490 490
       3 Cloud off \
@@ -492,8 +492,7 @@ function interactive_configuration {
492 492
       5 Mailbox off \
493 493
       6 Non-Mailbox off \
494 494
       7 Social off \
495
-      8 Media off \
496
-      9 Tor-Dongle off 2> $data
495
+      8 Media off 2> $data
497 496
   sel=$?
498 497
   case $sel in
499 498
       1) exit 0;;
@@ -508,7 +507,6 @@ function interactive_configuration {
508 507
       6) SYSTEM_TYPE=$VARIANT_NONMAILBOX;;
509 508
       7) SYSTEM_TYPE=$VARIANT_SOCIAL;;
510 509
       8) SYSTEM_TYPE=$VARIANT_MEDIA;;
511
-      9) SYSTEM_TYPE=$VARIANT_TOR_DONGLE;;
512 510
   esac
513 511
 
514 512
   data=$(tempfile 2>/dev/null)