2019-01-28 19:15:11 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
|
|
|
#=================================================
|
2019-12-29 17:43:56 +01:00
|
|
|
# REMOVE SERVICE INTEGRATION IN YUNOHOST
|
2019-01-28 19:15:11 +01:00
|
|
|
#=================================================
|
|
|
|
|
2021-03-23 20:16:47 +01:00
|
|
|
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
|
2019-12-29 17:43:56 +01:00
|
|
|
if ynh_exec_warn_less yunohost service status $app >/dev/null
|
2019-01-28 19:15:11 +01:00
|
|
|
then
|
2020-08-08 20:21:09 +02:00
|
|
|
ynh_script_progression --message="Removing $app service integration..."
|
2019-01-28 19:15:11 +01:00
|
|
|
yunohost service remove $app
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Remove the dedicated systemd config
|
|
|
|
ynh_remove_systemd_config
|
|
|
|
|
2022-01-05 03:58:46 +01:00
|
|
|
# Remove the app-specific logrotate config
|
|
|
|
ynh_remove_logrotate
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2020-12-11 09:23:59 +01:00
|
|
|
# Remove the dedicated NGINX config
|
2019-01-28 19:15:11 +01:00
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
2022-01-05 03:58:46 +01:00
|
|
|
# Remove metapackage and its dependencies
|
|
|
|
ynh_remove_nodejs
|
2019-01-28 19:15:11 +01:00
|
|
|
|
|
|
|
# Remove the log files
|
2020-08-08 20:21:09 +02:00
|
|
|
ynh_secure_remove --file="/var/log/$app"
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2019-02-11 04:34:08 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-08-08 20:21:09 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed"
|