Bob Mottram 9 anni fa
parent
commit
2c776bc635
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      src/freedombone-config

+ 1
- 1
src/freedombone-config Vedi File

573
       data=$(tempfile 2>/dev/null)
573
       data=$(tempfile 2>/dev/null)
574
       trap "rm -f $data" 0 1 2 5 15
574
       trap "rm -f $data" 0 1 2 5 15
575
       dialog --backtitle "Freedombone Configuration" \
575
       dialog --backtitle "Freedombone Configuration" \
576
-          --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
576
+          --inputbox "Optionally register with an Access Point" 10 40 "$(grep 'BATMAN_CELLID' temp.cfg | awk -F '=' '{print $2}')" 2> $data
577
       sel=$?
577
       sel=$?
578
       case $sel in
578
       case $sel in
579
           0) BATMAN_CELLID=$(cat $data);;
579
           0) BATMAN_CELLID=$(cat $data);;