1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/thelounge_ynh.git synced 2024-09-03 20:35:54 +02:00
thelounge_ynh/scripts/remove

40 lines
1.2 KiB
Text
Raw Normal View History

2015-08-22 20:24:46 +02:00
#!/bin/bash
2018-05-01 12:25:53 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2015-08-22 20:24:46 +02:00
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-04-07 09:46:39 +02:00
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
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`)
2019-10-25 11:04:41 +02:00
if ynh_exec_warn_less yunohost service status $app >/dev/null
then
2021-11-23 08:28:18 +01:00
ynh_script_progression --message="Removing $app service..." --weight=2
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
ynh_remove_nginx_config
2018-05-01 12:25:53 +02:00
# Remove the dedicated systemd config
ynh_remove_systemd_config
2020-05-27 18:18:11 +02:00
# Remove NodeJS
2019-10-25 11:04:41 +02:00
ynh_remove_nodejs
2018-05-01 12:25:53 +02:00
2019-10-25 11:04:41 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2021-11-23 08:28:18 +01:00
ynh_script_progression --message="Removal of $app completed" --last