diff --git a/src/freedombone-config b/src/freedombone-config index 0db27740..49f497bd 100755 --- a/src/freedombone-config +++ b/src/freedombone-config @@ -573,7 +573,7 @@ function interactive_configuration { data=$(tempfile 2>/dev/null) trap "rm -f $data" 0 1 2 5 15 dialog --backtitle "Freedombone Configuration" \ - --inputbox "Wireless Mesh cell ID\n\nIf you press enter the default will be $BATMAN_CELLID" 10 40 "$(grep 'BATMAN_CELLID' temp.cfg | awk -F '=' '{print $2}')" 2> $data + --inputbox "Optionally register with an Access Point" 10 40 "$(grep 'BATMAN_CELLID' temp.cfg | awk -F '=' '{print $2}')" 2> $data sel=$? case $sel in 0) BATMAN_CELLID=$(cat $data);;