Browse Source

Add startup grace time

master
Christian Rotzoll 6 years ago
parent
commit
b6dd3953a6
  1. 16
      home.admin/80scanLND.sh
  2. 4
      home.admin/config.scripts/blitz.statusscan.sh

16
home.admin/80scanLND.sh

@ -20,6 +20,7 @@ if [ ${bitcoinActive} -eq 0 ]; then
height=6
width=42
title="Blockchain Info"
if [ ${uptime} -gt 300 ]; then
infoStr=" The ${network}d service is not running.\n Login for more details:"
if [ "$USER" == "admin" ]; then
echo ""
@ -41,6 +42,12 @@ if [ ${bitcoinActive} -eq 0 ]; then
echo ""
exit 1
fi
else
infoStr=" The ${network}d service is starting.\n Login for more details:"
if [ "$USER" == "admin" ]; then
infoStr=" The ${network}d service is starting.\n Please wait up to 5min ..."
fi
fi
elif [ ${lndActive} -eq 0 ]; then
@ -51,7 +58,8 @@ elif [ ${lndActive} -eq 0 ]; then
height=5
width=42
title="Lightning Info"
infoStr=" The lnd service is not running.\n Login for more details:"
if [ ${uptime} -gt 300 ]; then
infoStr=" The LND service is not running.\n Login for more details:"
if [ "$USER" == "admin" ]; then
echo ""
echo "*********************************"
@ -72,6 +80,12 @@ elif [ ${lndActive} -eq 0 ]; then
echo ""
exit 1
fi
else
infoStr=" The LND service is starting.\n Login for more details:"
if [ "$USER" == "admin" ]; then
infoStr=" The LND service is starting.\n Please wait up to 5min ..."
fi
fi
else

4
home.admin/config.scripts/blitz.statusscan.sh

@ -24,6 +24,10 @@ echo "localIP='${localip}'"
tempC=$(echo "scale=1; $(cat /sys/class/thermal/thermal_zone0/temp)/1000" | bc)
echo "tempCelsius='${tempC}'"
# uptime in seconds
uptime=$(awk '{printf("%d\n",$1 + 0.5)}' /proc/uptime)
echo "uptime=${uptime}"
# is bitcoind running
bitcoinRunning=$(systemctl status ${network}d.service 2>/dev/null | grep -c running)
echo "bitcoinActive=${bitcoinRunning}"

Loading…
Cancel
Save