Browse Source

extend LCD dialog to show ipv6 addresses correctly

If your network is ipv6 only, $l2 will be trapped and the address truncated. As a result, $l3 is also not shown. This adjusts the width of the box.
#146
piezzo 7 years ago
committed by GitHub
parent
commit
0bf3d5bd1d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      home.admin/00infoLCD.sh

12
home.admin/00infoLCD.sh

@ -29,7 +29,8 @@ if [ "$USER" = "pi" ]; then
l1="Login to your RaspiBlitz with:\n"
l2="ssh admin@${localip}\n"
l3="Use password: raspiblitz\n"
dialog --backtitle "RaspiBlitz - Welcome" --infobox "$l1$l2$l3" 5 34
boxwidth=$((${#localip} + 20))
dialog --backtitle "RaspiBlitz - Welcome" --infobox "$l1$l2$l3" 5 ${boxwidth}
sleep 5
elif [ ${setupStep} -lt 100 ]; then
@ -45,7 +46,8 @@ if [ "$USER" = "pi" ]; then
l1="!!! LND WALLET IS LOCKED !!!\n"
l2="Login: ssh admin@${localip}\n"
l3="Use your Password A\n"
dialog --backtitle "RaspiBlitz - Action Required" --infobox "$l1$l2$l3" 5 36
boxwidth=$((${#localip} + 20))
dialog --backtitle "RaspiBlitz - Action Required" --infobox "$l1$l2$l3" 5 ${boxwidth}
sleep 5
elif [ ${lndSyncing} -gt 0 ]; then
@ -60,7 +62,8 @@ if [ "$USER" = "pi" ]; then
l1="Login to your RaspiBlitz with:\n"
l2="ssh admin@${localip}\n"
l3="Use your Password A\n"
dialog --backtitle "RaspiBlitz - Setup Mode" --infobox "$l1$l2$l3" 5 34
boxwidth=$((${#localip} + 20))
dialog --backtitle "RaspiBlitz - Welcome" --infobox "$l1$l2$l3" 5 ${boxwidth}
sleep 10
fi
@ -77,7 +80,8 @@ if [ "$USER" = "pi" ]; then
l1="!!! LND WALLET IS LOCKED !!!\n"
l2="Login: ssh admin@${localip}\n"
l3="Use your Password A\n"
dialog --backtitle "RaspiBlitz - Action Required" --infobox "$l1$l2$l3" 5 36
boxwidth=$((${#localip} + 20))
dialog --backtitle "RaspiBlitz - Welcome" --infobox "$l1$l2$l3" 5 ${boxwidth}
sleep 5
else

Loading…
Cancel
Save