2021-11-01 18:18:52 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2023-03-21 10:26:18 +01:00
|
|
|
# REMOVE SYSTEM CONFIGURATIONS
|
2021-11-01 18:18:52 +01:00
|
|
|
#=================================================
|
2023-03-21 10:26:18 +01:00
|
|
|
# REMOVE SYSTEMD SERVICE
|
2021-11-01 18:18:52 +01:00
|
|
|
#=================================================
|
2023-03-21 10:26:18 +01:00
|
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
|
2021-11-01 18:18:52 +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
|
2021-11-03 08:22:44 +01:00
|
|
|
ynh_script_progression --message="Removing $app service integration..." --weight=1
|
2021-11-01 18:18:52 +01:00
|
|
|
yunohost service remove $app
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Remove the dedicated systemd config
|
|
|
|
ynh_remove_systemd_config
|
|
|
|
|
|
|
|
# Remove the app-specific logrotate config
|
|
|
|
ynh_remove_logrotate
|
|
|
|
|
2021-11-01 21:45:35 +01:00
|
|
|
ynh_remove_nodejs
|
|
|
|
|
2021-11-01 18:18:52 +01:00
|
|
|
# Remove the dedicated NGINX config
|
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
|
|
|
# Remove the log files
|
|
|
|
ynh_secure_remove --file="/var/log/$app"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-11-02 06:31:18 +01:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|