datum-gateway-startos/check-dashboard.sh
2024-10-17 20:32:03 -07:00

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