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

image=$1
Pierre Ozoux's avatar
Pierre Ozoux committed
if [ "$image" == "wordpress" ] || [ "$image" == "known" ]; then
  systemctl stop lamp@$image.test
  sleep 15
else
  systemctl stop $image@$image.test
fi
Pierre Ozoux's avatar
Pierre Ozoux committed

systemctl list-units | grep -c "$image\.test" | grep 0
rm -rf /data/import/$image.test
rm -rf /data/runtime/domains/$image.test
Pierre Ozoux's avatar
Pierre Ozoux committed
rm -rf /data/domains/$image.test
Pierre Ozoux's avatar
Pierre Ozoux committed
systemctl stop *@$image.test.timer
systemctl stop *@$image.test
systemctl reset-failed
if [ "$image" == "wordpress" ] || [ "$image" == "known" ]; then
  systemctl disable lamp@$image.test
else
  systemctl disable $image@$image.test
fi
systemctl list-units | grep -c "$image\.test" | grep 0