Skip to content
Snippets Groups Projects
test.sh 349 B
Newer Older
Pierre Ozoux's avatar
Pierre Ozoux committed
#!/bin/bash -eux

image=$1

# prepare data
/data/indiehosters/scripts/provision.sh -s -e test@test.org -a $image -u $image.test -f /data/indiehosters/tests/unsecure-certs/indiehosters.dev.pem
Pierre Ozoux's avatar
Pierre Ozoux committed

if [ "$image" == "static" ]; then
Pierre Ozoux's avatar
Pierre Ozoux committed
  sleep 30
Pierre Ozoux's avatar
Pierre Ozoux committed
else
Pierre Ozoux's avatar
Pierre Ozoux committed
  sleep 60
Pierre Ozoux's avatar
Pierre Ozoux committed
fi

systemctl list-units | grep "$image\.test" | grep -c failed | grep 0
Pierre Ozoux's avatar
Pierre Ozoux committed
curl -Lk $image.test
Pierre Ozoux's avatar
Pierre Ozoux committed