1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/fittrackee_ynh.git synced 2024-09-03 18:36:16 +02:00
fittrackee_ynh/scripts/remove

70 lines
2.3 KiB
Text
Raw Normal View History

2022-04-29 12:18:34 +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`)
if ynh_exec_warn_less yunohost service status $app >/dev/null
then
2022-12-21 16:55:52 +01:00
ynh_script_progression --message="Removing $app service integration..." --weight=1
2022-04-29 12:18:34 +02:00
yunohost service remove $app
2023-02-28 21:01:56 +01:00
yunohost service remove ${app}_workers
2022-04-29 12:18:34 +02:00
fi
#=================================================
# STOP AND REMOVE SERVICE
#=================================================
2023-01-18 09:27:54 +01:00
ynh_script_progression --message="Stopping and removing the systemd service..." --weight=1
2022-04-29 12:18:34 +02:00
2023-03-02 20:39:00 +01:00
ynh_systemd_action --service_name="${app}" --action="stop" --log_path="/var/log/$app/$app.log" --line_match="Stopped $app"
2023-02-28 20:19:12 +01:00
ynh_systemd_action --service_name="${app}_workers" --action="stop" --log_path="systemd" --line_match="Stopped $app"
2022-04-29 12:18:34 +02:00
# Remove the dedicated systemd config
2023-03-02 20:39:00 +01:00
ynh_remove_systemd_config --service="${app}"
2023-02-28 20:19:12 +01:00
ynh_remove_systemd_config --service="${app}_workers"
2022-04-29 12:18:34 +02:00
#=================================================
# REMOVE APP MAIN DIR
#=================================================
2023-01-18 09:27:54 +01:00
ynh_script_progression --message="Removing app main directory..." --weight=1
2022-04-29 12:18:34 +02:00
# Remove the app directory securely
2023-02-17 18:52:53 +01:00
ynh_secure_remove --file="$install_dir"
2022-04-29 12:18:34 +02:00
2023-02-28 22:28:45 +01:00
#=================================================
# REMOVE VARIOUS FILES
#=================================================
ynh_script_progression --message="Removing various files..."
# Remove the log files
ynh_secure_remove --file="/var/log/$app"
2023-03-02 20:39:00 +01:00
2023-02-28 22:28:45 +01:00
2022-04-29 12:18:34 +02:00
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2023-01-18 09:27:54 +01:00
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
2022-04-29 12:18:34 +02:00
# Remove the dedicated NGINX config
ynh_remove_nginx_config
#=================================================
# END OF SCRIPT
#=================================================
2022-12-21 16:55:52 +01:00
ynh_script_progression --message="Removal of $app completed" --last