2018-11-21 16:11:09 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2020-05-21 12:49:24 +02:00
|
|
|
source _common.sh
|
2018-11-21 16:11:09 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2024-06-18 09:46:24 +02:00
|
|
|
# REMOVE SYSTEM CONFIGURATIONS
|
2020-05-22 18:59:38 +02:00
|
|
|
#=================================================
|
2023-12-24 18:20:53 +01:00
|
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
|
2020-05-22 18:59:38 +02:00
|
|
|
|
|
|
|
if ynh_exec_warn_less yunohost service status $app >/dev/null
|
|
|
|
then
|
|
|
|
ynh_script_progression --message="Removing $app service..." --weight=1
|
|
|
|
yunohost service remove $app
|
|
|
|
fi
|
|
|
|
|
2019-03-13 16:44:42 +01:00
|
|
|
ynh_remove_systemd_config
|
2018-11-21 16:11:09 +01:00
|
|
|
|
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
2022-02-05 08:22:52 +01:00
|
|
|
ynh_remove_nodejs
|
|
|
|
|
2019-03-13 16:44:42 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2022-02-05 08:22:52 +01:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|