2017-02-02 20:25:21 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-02-23 20:17:09 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2017-02-02 20:25:21 +01:00
|
|
|
|
2018-02-23 20:17:09 +01:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
2017-02-02 20:25:21 +01:00
|
|
|
|
2018-02-23 20:17:09 +01:00
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
2019-02-09 22:01:38 +01:00
|
|
|
#=================================================
|
2020-04-19 05:16:46 +02:00
|
|
|
# REMOVE SERVICE INTEGRATION IN YUNOHOST
|
2019-02-09 22:01:38 +01:00
|
|
|
#=================================================
|
|
|
|
|
2022-06-16 01:28:41 +02:00
|
|
|
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
|
2020-04-19 05:16:46 +02:00
|
|
|
if ynh_exec_warn_less yunohost service status $app >/dev/null
|
2019-02-09 22:01:38 +01:00
|
|
|
then
|
2022-06-16 01:28:41 +02:00
|
|
|
ynh_script_progression --message="Removing $app service integration..."
|
2019-02-09 22:01:38 +01:00
|
|
|
yunohost service remove $app
|
|
|
|
fi
|
|
|
|
|
2018-02-23 20:17:09 +01:00
|
|
|
# Remove the dedicated systemd config
|
|
|
|
ynh_remove_systemd_config
|
|
|
|
|
2022-06-16 01:28:41 +02:00
|
|
|
# Remove the app-specific logrotate config
|
|
|
|
ynh_remove_logrotate
|
2020-04-19 05:16:46 +02:00
|
|
|
|
2022-06-16 01:28:41 +02:00
|
|
|
# Remove the dedicated NGINX config
|
2018-02-23 20:17:09 +01:00
|
|
|
ynh_remove_nginx_config
|
2017-04-21 12:54:39 +02:00
|
|
|
|
2020-05-28 21:36:47 +02:00
|
|
|
# Remove the log files
|
2020-04-19 05:16:46 +02:00
|
|
|
ynh_secure_remove --file="/var/log/$app.log"
|
2019-02-21 12:45:27 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
2019-02-03 00:20:08 +01:00
|
|
|
#=================================================
|
|
|
|
|
2020-05-30 15:30:23 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed"
|