#!/bin/sh

URL=$1

until $(curl --output /dev/null --silent --head --fail $URL); do
  sleep 5
done


