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

This commit is contained in:
Bob Mottram 2015-01-18 15:09:35 +00:00
parent abd244b1a3
commit c840f94034
1 changed files with 2 additions and 4 deletions

View File

@ -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)