mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-24 14:51:03 +01:00
#175 more info on lasting starting up error
This commit is contained in:
parent
adc9479339
commit
ccecf6aef9
1 changed files with 8 additions and 2 deletions
|
@ -152,15 +152,21 @@ while :
|
|||
clienterror=`cat error.tmp`
|
||||
rm error.tmp
|
||||
if [ ${#clienterror} -gt 0 ]; then
|
||||
|
||||
boxwidth=40
|
||||
l1="Waiting for ${network}d to get ready.\n"
|
||||
l2="---> Starting Up\n"
|
||||
l3="Can take longer if device was off."
|
||||
isVerifying=$(echo "${clienterror}" | grep -c 'Verifying blocks')
|
||||
if [ ${isVerifying} -gt 0 ]; then
|
||||
l2="---> Verifying Blocks\n"
|
||||
else
|
||||
# when takes longer display error
|
||||
uptimeSeconds="$(cat /proc/uptime | grep -o '^[0-9]\+')"
|
||||
if [ ${uptimeSeconds} -gt 10 ]; then
|
||||
l2="---> Error: ${clienterror}\n"
|
||||
boxwidth=70
|
||||
fi
|
||||
fi
|
||||
boxwidth=40
|
||||
dialog --backtitle "RaspiBlitz ${codeVersion} (${localip}) - Welcome Back" --infobox "$l1$l2$l3" 5 ${boxwidth}
|
||||
sleep 5
|
||||
continue
|
||||
|
|
Loading…
Add table
Reference in a new issue