2022-04-29 12:18:34 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2023-09-14 19:16:04 +02:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Loading installation settings..."
|
|
|
|
|
|
|
|
redis_db=$(ynh_app_setting_get --app=$app --key=redis_db)
|
2022-04-29 12:18:34 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
|
|
|
#=================================================
|
|
|
|
# REMOVE SERVICE INTEGRATION IN YUNOHOST
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
|
|
|
|
if ynh_exec_warn_less yunohost service status $app >/dev/null
|
|
|
|
then
|
2023-03-05 20:32:58 +01:00
|
|
|
ynh_script_progression --message="Removing $app services integration..." --weight=1
|
2022-04-29 12:18:34 +02:00
|
|
|
yunohost service remove $app
|
2023-02-28 21:01:56 +01:00
|
|
|
yunohost service remove ${app}_workers
|
2022-04-29 12:18:34 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STOP AND REMOVE SERVICE
|
|
|
|
#=================================================
|
2023-01-18 09:27:54 +01:00
|
|
|
ynh_script_progression --message="Stopping and removing the systemd service..." --weight=1
|
2022-04-29 12:18:34 +02:00
|
|
|
|
|
|
|
# Remove the dedicated systemd config
|
2023-03-02 20:39:00 +01:00
|
|
|
ynh_remove_systemd_config --service="${app}"
|
2023-02-28 20:19:12 +01:00
|
|
|
ynh_remove_systemd_config --service="${app}_workers"
|
2022-12-31 18:14:15 +01:00
|
|
|
|
2023-02-28 22:28:45 +01:00
|
|
|
#=================================================
|
|
|
|
# REMOVE VARIOUS FILES
|
|
|
|
#=================================================
|
2023-03-05 20:32:58 +01:00
|
|
|
ynh_script_progression --message="Removing various files..." --weight=5
|
2022-04-29 12:18:34 +02:00
|
|
|
|
|
|
|
# Remove the dedicated NGINX config
|
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
2023-03-03 16:12:49 +01:00
|
|
|
ynh_remove_logrotate
|
|
|
|
|
2023-03-05 20:32:58 +01:00
|
|
|
# Remove the log files
|
|
|
|
ynh_secure_remove --file="/var/log/$app"
|
|
|
|
|
2023-09-14 19:16:04 +02:00
|
|
|
# Remove the redis database
|
|
|
|
ynh_redis_remove_db "$redis_db"
|
|
|
|
|
2022-04-29 12:18:34 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2022-12-21 16:55:52 +01:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|