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
|
|
|
|
|
|
|
|
services=(
|
|
|
|
"${app}_authorized_keys_worker"
|
|
|
|
"${app}_ci"
|
|
|
|
"${app}_ev_server"
|
|
|
|
"${app}_gitolite_worker"
|
|
|
|
"${app}_loadjson"
|
|
|
|
"${app}_logcom"
|
|
|
|
"${app}_milters"
|
|
|
|
"${app}_mirror"
|
|
|
|
"${app}_webhook"
|
|
|
|
"${app}_worker"
|
|
|
|
)
|
|
|
|
for service in "${services[@]}"; do
|
|
|
|
if ynh_exec_warn_less yunohost service status "$service" >/dev/null; then
|
|
|
|
yunohost service remove "$service"
|
|
|
|
fi
|
|
|
|
ynh_remove_systemd_config --service="$service"
|
|
|
|
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"
|