From c840f940348746c97f27b67d46aff20ac7ea0cf8 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 18 Jan 2015 15:09:35 +0000 Subject: [PATCH] Since it's not yet working exclude the tor dongle option --- src/freedombone | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/freedombone b/src/freedombone index 3832ea4f..572e05fe 100755 --- a/src/freedombone +++ b/src/freedombone @@ -484,7 +484,7 @@ function interactive_configuration { data=$(tempfile 2>/dev/null) trap "rm -f $data" 0 1 2 5 15 dialog --backtitle "Freedombone Configuration" \ - --radiolist "Type of Installation:" 15 40 9 \ + --radiolist "Type of Installation:" 15 40 8 \ 1 Full on \ 2 Writer off \ 3 Cloud off \ @@ -492,8 +492,7 @@ function interactive_configuration { 5 Mailbox off \ 6 Non-Mailbox off \ 7 Social off \ - 8 Media off \ - 9 Tor-Dongle off 2> $data + 8 Media off 2> $data sel=$? case $sel in 1) exit 0;; @@ -508,7 +507,6 @@ function interactive_configuration { 6) SYSTEM_TYPE=$VARIANT_NONMAILBOX;; 7) SYSTEM_TYPE=$VARIANT_SOCIAL;; 8) SYSTEM_TYPE=$VARIANT_MEDIA;; - 9) SYSTEM_TYPE=$VARIANT_TOR_DONGLE;; esac data=$(tempfile 2>/dev/null)