2019-08-05 01:29:15 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
|
|
|
#=================================================
|
2019-12-29 23:23:32 +01:00
|
|
|
# REMOVE SERVICE INTEGRATION IN YUNOHOST
|
2019-08-05 01:29:15 +02:00
|
|
|
#=================================================
|
|
|
|
|
2021-04-10 01:38:20 +02:00
|
|
|
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
|
2019-12-29 23:23:32 +01:00
|
|
|
if ynh_exec_warn_less yunohost service status $app >/dev/null
|
2019-08-05 01:29:15 +02:00
|
|
|
then
|
2020-12-01 22:04:05 +01:00
|
|
|
ynh_script_progression --message="Removing $app service integration..."
|
2019-12-29 23:23:32 +01:00
|
|
|
yunohost service remove $app
|
2019-08-05 01:29:15 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Remove the dedicated systemd config
|
|
|
|
ynh_remove_systemd_config
|
|
|
|
|
2020-09-21 09:02:06 +02:00
|
|
|
# Remove the dedicated NGINX config
|
2019-08-05 01:29:15 +02:00
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
2020-09-21 09:02:06 +02:00
|
|
|
# Remove the dedicated Fail2Ban config
|
2019-08-05 01:29:15 +02:00
|
|
|
ynh_remove_fail2ban_config
|
|
|
|
|
|
|
|
# Remove the log files
|
2020-01-12 21:42:15 +01:00
|
|
|
ynh_secure_remove --file="/var/log/$app"
|
2019-08-05 01:29:15 +02:00
|
|
|
|
2023-09-15 14:39:06 +02:00
|
|
|
# Remove the config file
|
|
|
|
ynh_secure_remove --file="/$data_dir/config.json"
|
|
|
|
|
2019-08-05 01:29:15 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-12-01 22:04:05 +01:00
|
|
|
ynh_script_progression --message="Removal of $app completed"
|