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

34 lines
938 B
Text
Raw Normal View History

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
#=================================================
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`)
if ynh_hide_warnings yunohost service status $app >/dev/null
2019-10-25 11:04:41 +02:00
then
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
ynh_config_remove_nginx
2018-05-01 12:25:53 +02:00
# Remove the dedicated systemd config
ynh_config_remove_systemd
2018-05-01 12:25:53 +02:00
2020-05-27 18:18:11 +02:00
# Remove NodeJS
ynh_nodejs_remove
2018-05-01 12:25:53 +02:00
2019-10-25 11:04:41 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression "Removal of $app completed"