Skip to content
Snippets Groups Projects
finish.sh 313 B
Newer Older
#!/bin/bash -eux

ROOT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/..

Pierre Ozoux's avatar
Pierre Ozoux committed
systemctl list-units | grep -c failed | grep 0
applications=( `cat $ROOT_DIR/SUPPORTED_APPLICATIONS` )

for application in "${applications[@]}"
do
Pierre Ozoux's avatar
Pierre Ozoux committed
  curl -Lk $application.test
Pierre Ozoux's avatar
Pierre Ozoux committed
  /data/indiehosters/tests/clean.sh $application
Pierre Ozoux's avatar
Pierre Ozoux committed