2019-05-07 19:23:35 +00:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
2018-11-28 10:02:51 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
if [ "$(id -u)" != "0" ]; then
|
2019-01-26 07:37:26 +00:00
|
|
|
echo "This script must be executed as root! Aborting."
|
|
|
|
exit 1
|
2018-11-28 10:02:51 +00:00
|
|
|
fi
|
|
|
|
|
2019-02-28 09:51:09 +00:00
|
|
|
echo "WARNING! You are about to remove everything the playbook installs for {{ matrix_server_fqn_matrix }}: matrix, docker images,..."
|
2018-11-28 10:02:51 +00:00
|
|
|
echo -n "If you're sure you want to do this, type: 'Yes, I really want to remove everything!'"
|
|
|
|
read sure
|
|
|
|
|
|
|
|
if [ "$sure" != "Yes, I really want to remove everything!" ]; then
|
2019-01-26 07:37:26 +00:00
|
|
|
echo "Good thing I asked, exiting"
|
|
|
|
exit 0
|
2018-11-28 10:02:51 +00:00
|
|
|
else
|
2019-01-26 07:37:26 +00:00
|
|
|
echo "Stop and remove matrix services"
|
2021-01-24 17:42:32 +00:00
|
|
|
|
2022-11-04 14:38:38 +00:00
|
|
|
for s in $(find {{ devture_systemd_docker_base_systemd_path }}/ -type f -name "matrix-*" -printf "%f\n"); do
|
2021-01-25 06:58:23 +00:00
|
|
|
systemctl disable --now $s
|
2022-11-04 14:38:38 +00:00
|
|
|
rm -f {{ devture_systemd_docker_base_systemd_path }}/$s
|
2019-01-26 07:37:26 +00:00
|
|
|
done
|
2021-01-24 17:42:32 +00:00
|
|
|
|
2023-02-28 23:06:46 +00:00
|
|
|
echo "Stop and remove devture services"
|
|
|
|
|
|
|
|
for s in $(find {{ devture_systemd_docker_base_systemd_path }}/ -type f -name "devture-*" -printf "%f\n"); do
|
|
|
|
systemctl disable --now $s
|
|
|
|
rm -f {{ devture_systemd_docker_base_systemd_path }}/$s
|
|
|
|
done
|
|
|
|
|
2019-01-26 07:37:26 +00:00
|
|
|
systemctl daemon-reload
|
2021-01-24 17:42:32 +00:00
|
|
|
|
2020-11-24 07:38:17 +00:00
|
|
|
echo "Remove unused Docker images and resources"
|
|
|
|
docker system prune -af
|
|
|
|
echo "Remove Docker matrix network (should be gone already, but ..)"
|
2019-04-27 20:12:05 +00:00
|
|
|
docker network rm {{ matrix_docker_network }}
|
|
|
|
echo "Remove {{ matrix_base_data_path }} directory"
|
|
|
|
rm -fr "{{ matrix_base_data_path }}"
|
2019-01-26 07:37:26 +00:00
|
|
|
exit 0
|
2018-11-28 10:02:51 +00:00
|
|
|
fi
|
|
|
|
|