1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pagure_ynh.git synced 2024-09-03 19:56:19 +02:00
pagure_ynh/scripts/remove
2024-03-15 23:36:28 +01:00

35 lines
1 KiB
Bash
Executable file

#!/bin/bash
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source ynh_redis
source ynh_uwsgi_service__2
source /usr/share/yunohost/helpers
#=================================================
# REMOVE SYSTEM CONFIGURATIONS
#=================================================
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
for service in "${services[@]}"; do
if ynh_exec_warn_less yunohost service status "${app}_${service}" >/dev/null; then
yunohost service remove "${app}_${service}"
fi
ynh_remove_systemd_config --service="${app}_${service}"
done
ynh_remove_uwsgi_service --service="$app"
# Remove the dedicated NGINX config
ynh_remove_nginx_config
ynh_redis_remove_db "$redis_db"
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Removal of $app completed"