2019-02-06 19:37:46 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
|
|
|
#=================================================
|
2022-09-21 01:03:09 +02:00
|
|
|
# REMOVE SERVICE INTEGRATION IN YUNOHOST
|
2019-02-06 19:37:46 +01:00
|
|
|
#=================================================
|
|
|
|
|
2022-09-21 01:03:09 +02:00
|
|
|
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
|
2019-05-22 22:10:48 +02:00
|
|
|
if ynh_exec_warn_less yunohost service status $app >/dev/null
|
2019-02-06 19:37:46 +01:00
|
|
|
then
|
2022-09-21 01:03:09 +02:00
|
|
|
ynh_script_progression --message="Removing $app service integration..." --weight=1
|
2019-02-06 19:37:46 +01:00
|
|
|
yunohost service remove $app
|
|
|
|
fi
|
|
|
|
|
2019-05-22 22:10:48 +02:00
|
|
|
# Remove the dedicated systemd config
|
|
|
|
ynh_remove_systemd_config
|
2019-02-06 19:37:46 +01:00
|
|
|
|
2022-09-21 01:03:09 +02:00
|
|
|
# Remove the app-specific logrotate config
|
|
|
|
ynh_remove_logrotate
|
2019-02-06 19:37:46 +01:00
|
|
|
|
2022-09-21 01:03:09 +02:00
|
|
|
# Remove the dedicated NGINX config
|
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
2021-03-17 22:09:46 +01:00
|
|
|
ynh_secure_remove --file="/etc/default/$app"
|
2019-05-24 21:10:58 +02:00
|
|
|
|
2019-05-22 22:10:48 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|