You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

82 lines
2.0 KiB

#!/bin/bash
6 years ago
source /home/admin/_version.info
source /home/admin/raspiblitz.info
6 years ago
source /mnt/hdd/raspiblitz.conf
6 years ago
source <(sudo /home/admin/config.scripts/blitz.statusscan.sh)
6 years ago
adminStr="ssh admin@${localIP} ->Password A"
if [ "$USER" == "admin" ]; then
adminStr="Use CTRL+c to EXIT to Terminal"
fi
6 years ago
if [ ${bitcoinActive} -eq 0 ]; then
####################
# On Bitcoin Error
####################
height=6
width=42
6 years ago
title="Blockchain Warning"
infoStr=" The ${network}d service is not running.\n Login for more details:"
if [ "$USER" == "admin" ]; then
6 years ago
echo ""
echo "*********************************"
echo "* The ${network}d service is not running."
echo "*********************************"
echo ${bitcoinError}
echo "Use following command to debug:"
echo "/home/admin/XXdebugLogs.sh"
echo ""
exit 1
fi
elif [ ${lndActive} -eq 0 ]; then
####################
# On LND Error
####################
6 years ago
height=5
width=42
6 years ago
title="Lightning Warning"
infoStr=" The lnd service is not running.\n Login for more details:"
if [ "$USER" == "admin" ]; then
6 years ago
echo ""
6 years ago
echo "*********************************"
echo "* The lnd service is not running."
echo "*********************************"
echo ${lndError}
echo "Use following command to debug:"
echo "/home/admin/XXdebugLogs.sh"
6 years ago
echo ""
exit 1
fi
else
####################
# Sync Progress
####################
# basic dialog info
height=6
width=42
6 years ago
title="Node is Syncing (${scriptRuntime})"
# format progress values
if [ ${#syncProgress} -lt 6 ]; then
syncProgress=" ${syncProgress}"
fi
if [ ${#scanProgress} -lt 6 ]; then
scanProgress=" ${scanProgress}"
fi
infoStr=" Blockchain Progress : ${syncProgress} %\n Lightning Progress : ${scanProgress} %\n Please wait - this can take some time"
fi
# display info to user
6 years ago
dialog --title " ${title} " --backtitle "RaspiBlitz ${codeVersion} ${hostname} / ${network} / ${chain} / ${tempCelsius}°C" --infobox "${infoStr}\n ${adminStr}" ${height} ${width}