Try a few times more

This commit is contained in:
Johan Wassberg 2024-08-21 14:10:03 +02:00
parent b6002f18c5
commit c61a026326
Signed by: jocar
GPG key ID: BE4EC2EEADF2C31B

View file

@ -3,4 +3,11 @@
set -e
set -o pipefail
curl -k https://localhost:443 | jq
while true; do
if curl -k https://localhost:443 | jq ; then
exit 0
fi
sleep 3
done