2015-08-22 20:24:46 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-05-01 12:25:53 +02:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
2015-08-22 20:24:46 +02:00
|
|
|
|
2018-05-01 12:25:53 +02:00
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
2019-10-25 11:04:41 +02:00
|
|
|
#=================================================
|
2020-05-30 19:18:05 +02:00
|
|
|
# REMOVE SERVICE INTEGRATION IN YUNOHOST
|
2019-10-25 11:04:41 +02:00
|
|
|
#=================================================
|
2024-08-31 03:05:48 +02:00
|
|
|
ynh_script_progression "Removing system configurations related to $app..."
|
2019-10-25 11:04:41 +02:00
|
|
|
|
2023-03-14 21:06:18 +01:00
|
|
|
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
|
2024-08-31 03:05:48 +02:00
|
|
|
if ynh_hide_warnings yunohost service status $app >/dev/null
|
2019-10-25 11:04:41 +02:00
|
|
|
then
|
2024-08-31 03:05:48 +02:00
|
|
|
ynh_script_progression "Removing $app service..."
|
2020-05-29 22:51:48 +02:00
|
|
|
yunohost service remove $app
|
2019-10-25 11:04:41 +02:00
|
|
|
fi
|
|
|
|
|
2024-04-07 09:46:39 +02:00
|
|
|
# Remove the dedicated NGINX config
|
2024-08-31 03:05:48 +02:00
|
|
|
ynh_config_remove_nginx
|
2018-05-01 12:25:53 +02:00
|
|
|
|
|
|
|
# Remove the dedicated systemd config
|
2024-08-31 03:05:48 +02:00
|
|
|
ynh_config_remove_systemd
|
2018-05-01 12:25:53 +02:00
|
|
|
|
2020-05-27 18:18:11 +02:00
|
|
|
# Remove NodeJS
|
2024-08-31 03:05:48 +02:00
|
|
|
ynh_nodejs_remove
|
2018-05-01 12:25:53 +02:00
|
|
|
|
2019-10-25 11:04:41 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-08-31 03:05:48 +02:00
|
|
|
ynh_script_progression "Removal of $app completed"
|