2017-01-05 23:37:07 +01:00
#!/bin/bash
2018-01-31 16:07:43 +01:00
#=================================================
# GENERIC START
#=================================================
2023-12-09 00:35:51 +01:00
# IMPORT GENERIC HELPERS
#=================================================
2018-01-31 16:07:43 +01:00
2023-12-09 00:35:51 +01:00
source _common.sh
2020-11-17 23:37:38 +01:00
source /usr/share/yunohost/helpers
2018-01-31 16:07:43 +01:00
#=================================================
# STANDARD REMOVE
#=================================================
2023-12-09 00:35:51 +01:00
# REMOVE SERVICE INTEGRATION IN YUNOHOST
#=================================================
2018-01-31 16:07:43 +01:00
2023-12-09 00:35:51 +01:00
# 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
ynh_script_progression --message="Removing $app service integration..." --weight=3
yunohost service remove "$app"
fi
2017-01-05 23:37:07 +01:00
2023-12-09 00:35:51 +01:00
#=================================================
# REMOVE SYSTEM CONFIGURATIONS
#=================================================
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
2017-01-05 23:37:07 +01:00
2023-12-09 00:35:51 +01:00
ynh_systemd_action --service_name="$app" --action="stop" --log_path="systemd" --timeout=15
2017-10-30 21:59:43 +01:00
2023-12-09 00:35:51 +01:00
ynh_secure_remove --file="$nginx_status_conf"
2018-05-07 23:08:03 +02:00
ynh_remove_nginx_config
2023-01-22 03:09:34 +01:00
ynh_remove_systemd_config
2023-12-09 00:35:51 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_print_info --message="Due of the backup core only feature the data directory in '/var/lib/monitorix' was not removed. It need to be removed manually to purge app user data."
2019-06-07 23:09:30 +02:00
ynh_script_progression --message="Removal of $app completed" --last