mirror of
https://github.com/RoboSats/robosats-startos.git
synced 2025-07-19 01:03:26 +00:00
13 lines
275 B
Bash
13 lines
275 B
Bash
#!/bin/bash
|
|
|
|
DURATION=$(</dev/stdin)
|
|
if (($DURATION <= 5500)); then
|
|
exit 60
|
|
else
|
|
curl --silent --fail robosats.embassy:12596 &>/dev/null
|
|
WEB_RES=$?
|
|
if [ $WEB_RES != 0 ]; then
|
|
echo "RoboSats UI is unreachable, please wait" >&2
|
|
exit 61
|
|
fi
|
|
fi |