2017-10-06 15:36:42 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2018-09-27 23:33:34 +02:00
|
|
|
|
2017-10-06 15:36:42 +02:00
|
|
|
source _common.sh
|
2022-02-27 16:11:02 +01:00
|
|
|
source ynh_redis
|
|
|
|
source ynh_uwsgi_service__2
|
2017-10-06 15:36:42 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2024-03-15 23:27:46 +01:00
|
|
|
# REMOVE SYSTEM CONFIGURATIONS
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
|
|
|
|
|
|
|
|
for service in "${services[@]}"; do
|
2024-03-15 23:36:28 +01:00
|
|
|
if ynh_exec_warn_less yunohost service status "${app}_${service}" >/dev/null; then
|
|
|
|
yunohost service remove "${app}_${service}"
|
2024-03-15 23:27:46 +01:00
|
|
|
fi
|
2024-03-15 23:36:28 +01:00
|
|
|
ynh_remove_systemd_config --service="${app}_${service}"
|
2024-03-15 23:27:46 +01:00
|
|
|
done
|
2022-02-27 16:11:02 +01:00
|
|
|
|
|
|
|
ynh_remove_uwsgi_service --service="$app"
|
2017-10-06 15:36:42 +02:00
|
|
|
|
2022-02-27 16:11:02 +01:00
|
|
|
# Remove the dedicated NGINX config
|
|
|
|
ynh_remove_nginx_config
|
2018-05-20 23:57:36 +02:00
|
|
|
|
2022-02-27 16:11:02 +01:00
|
|
|
ynh_redis_remove_db "$redis_db"
|
2017-10-06 15:36:42 +02:00
|
|
|
|
2022-02-27 16:11:02 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Removal of $app completed"
|