1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/tracim_ynh.git synced 2024-10-01 13:34:52 +02:00
tracim_ynh/scripts/remove

80 lines
2.8 KiB
Text
Raw Permalink Normal View History

2022-04-06 20:56:59 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# STANDARD REMOVE
#=================================================
# REMOVE SERVICE INTEGRATION IN YUNOHOST
#=================================================
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
2022-04-13 00:11:54 +02:00
if ynh_exec_warn_less yunohost service status uwsgi >/dev/null
2022-04-06 20:56:59 +02:00
then
2022-04-13 00:11:54 +02:00
ynh_script_progression --message="Removing uwsgi service integration..."
yunohost service remove uwsgi
2022-04-06 20:56:59 +02:00
fi
2022-04-13 00:11:54 +02:00
if ynh_exec_warn_less yunohost service status supervisor >/dev/null
2022-04-08 03:47:14 +02:00
then
2022-04-13 00:11:54 +02:00
ynh_script_progression --message="Removing supervisor service integration..."
yunohost service remove supervisor
2022-04-08 03:47:14 +02:00
fi
2022-04-06 20:56:59 +02:00
#=================================================
# STOP AND REMOVE SERVICE
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Stopping and removing the systemd service..."
2022-04-06 20:56:59 +02:00
# Remove the dedicated systemd config
2022-04-08 03:47:14 +02:00
ynh_remove_supervisor_config --service="$app"
2022-04-11 16:00:33 +02:00
ynh_secure_remove --file="/etc/uwsgi/apps-enabled/$app-web.ini"
ynh_secure_remove --file="/etc/uwsgi/apps-available/$app-web.ini"
ynh_secure_remove --file="/etc/uwsgi/apps-enabled/$app-webdav.ini"
ynh_secure_remove --file="/etc/uwsgi/apps-available/$app-webdav.ini"
ynh_secure_remove --file="/etc/uwsgi/apps-enabled/$app-caldav.ini"
ynh_secure_remove --file="/etc/uwsgi/apps-available/$app-caldav.ini"
2022-04-13 00:11:54 +02:00
ynh_systemd_action --service_name="uwsgi" --action="restart"
2022-04-06 20:56:59 +02:00
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Removing NGINX web server configuration..."
2022-04-06 20:56:59 +02:00
# Remove the dedicated NGINX config
ynh_remove_nginx_config
#=================================================
# REMOVE DEPENDENCIES
#=================================================
2023-04-27 22:55:37 +02:00
#REMOVEME? ynh_script_progression --message="Removing dependencies..."
2022-04-06 20:56:59 +02:00
# Remove metapackage and its dependencies
2022-04-13 00:11:54 +02:00
ynh_redis_remove_db "$redis_db"
2022-04-08 03:47:14 +02:00
ynh_remove_nodejs
2022-04-06 20:56:59 +02:00
#=================================================
# SPECIFIC REMOVE
2022-04-13 00:11:54 +02:00
#=================================================
# REMOVE VARIOUS FILES
#=================================================
ynh_script_progression --message="Removing various files..."
# Remove the log files
ynh_secure_remove --file="/var/log/uwsgi/app/$app-web.log"
ynh_secure_remove --file="/var/log/uwsgi/app/$app-webdav.log"
ynh_secure_remove --file="/var/log/uwsgi/app/$app-caldav.log"
2022-04-06 20:56:59 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Removal of $app completed"