Wording change

This commit is contained in:
Bob Mottram 2015-08-21 14:52:20 +01:00
parent dcbd3e6b14
commit 2c776bc635
1 changed files with 1 additions and 1 deletions

View File

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