2017-04-09 11:05:39 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-03-13 23:43:18 +01:00
|
|
|
source _common.sh
|
2017-04-09 11:05:39 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2024-07-30 09:45:15 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE SYSTEM CONFIGURATIONS
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
|
2019-08-23 16:08:03 +02:00
|
|
|
|
2022-03-13 23:43:18 +01:00
|
|
|
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
|
2019-08-23 16:08:03 +02:00
|
|
|
if ynh_exec_warn_less yunohost service status $app >/dev/null
|
|
|
|
then
|
|
|
|
yunohost service remove $app
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Remove the dedicated systemd config
|
|
|
|
ynh_remove_systemd_config
|
2017-04-09 11:05:39 +02:00
|
|
|
|
2022-03-13 23:43:18 +01:00
|
|
|
# Remove the dedicated NGINX config
|
2019-08-23 16:08:03 +02:00
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2017-04-09 11:05:39 +02:00
|
|
|
|
2022-09-03 00:23:04 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|