mirror of
https://github.com/OCEAN-xyz/datum-gateway-startos.git
synced 2025-05-12 11:10:42 +02:00
14 lines
232 B
Bash
14 lines
232 B
Bash
#!/bin/bash
|
|
|
|
read DURATION
|
|
if [ "$DURATION" -le 1000 ]; then
|
|
exit 60
|
|
else
|
|
if curl -sS http://datum.embassy:7152 >/dev/null; then
|
|
exit 0
|
|
else
|
|
echo "The dashboard is not ready" >&2
|
|
exit 1
|
|
fi
|
|
fi
|