fix: update some examples

This commit is contained in:
Stefan Ottosson
2024-05-23 17:42:36 +02:00
parent 1ac5696463
commit b2ede38269
2 changed files with 4 additions and 2 deletions

View File

@@ -2,9 +2,10 @@
# Filename: index.sh
PUSH_URL="https://example.com/api/push/key?status=up&msg=OK&ping="
INTERVAL=60
HTTP_METHOD="GET"
while true; do
curl -s -o /dev/null $PUSH_URL
curl -X $HTTP_METHOD -s -o /dev/null $PUSH_URL
echo "Pushed!"
sleep $INTERVAL
done