2021-02-16 13:38:59 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2021-02-16 14:17:45 +01:00
|
|
|
source _common.sh
|
2021-02-16 13:38:59 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2023-03-12 22:29:28 +01:00
|
|
|
# REMOVE SYSTEM CONFIGURATIONS
|
2021-02-16 14:17:45 +01:00
|
|
|
#=================================================
|
2023-03-12 22:29:28 +01:00
|
|
|
# REMOVE SYSTEMD SERVICE
|
2021-02-16 14:17:45 +01:00
|
|
|
#=================================================
|
2023-03-12 22:29:28 +01:00
|
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
|
2021-02-16 14:17:45 +01:00
|
|
|
|
2022-07-03 16:40:34 +02:00
|
|
|
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
|
2021-02-16 14:17:45 +01:00
|
|
|
if ynh_exec_warn_less yunohost service status $app >/dev/null
|
|
|
|
then
|
2022-07-03 16:40:34 +02:00
|
|
|
ynh_script_progression --message="Removing $app service integration..."
|
2021-02-16 14:17:45 +01:00
|
|
|
yunohost service remove $app
|
|
|
|
fi
|
|
|
|
|
2024-02-28 23:19:34 +01:00
|
|
|
# Remove the dedicated systemd config
|
2021-02-16 14:17:45 +01:00
|
|
|
ynh_remove_systemd_config
|
|
|
|
|
2024-02-28 23:19:34 +01:00
|
|
|
# Remove the dedicated NGINX config
|
2022-07-03 16:40:34 +02:00
|
|
|
ynh_remove_nginx_config
|
2021-02-16 13:38:59 +01:00
|
|
|
|
2022-07-03 16:40:34 +02:00
|
|
|
ynh_remove_nodejs
|
2021-02-16 13:38:59 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-03-27 21:06:39 +01:00
|
|
|
ynh_script_progression --message="Removal of $app completed"
|