1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/nodebb_ynh.git synced 2024-09-03 19:46:29 +02:00
nodebb_ynh/scripts/remove

62 lines
2 KiB
Text
Raw Normal View History

2017-04-08 00:06:50 +02:00
#!/bin/bash
2018-03-11 12:42:46 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
2017-04-08 00:06:50 +02:00
source /usr/share/yunohost/helpers
2018-03-11 12:42:46 +01:00
#=================================================
# STANDARD REMOVE
2021-03-25 17:00:29 +01:00
#=================================================
# 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
2021-08-31 15:55:02 +02:00
ynh_script_progression --message="Removing $app service integration..." --weight=1
2021-03-25 17:00:29 +01:00
yunohost service remove $app
fi
2018-03-11 12:42:46 +01:00
#=================================================
# STOP AND REMOVE SERVICE
#=================================================
2021-08-31 15:55:02 +02:00
ynh_script_progression --message="Stopping and removing the systemd service..." --weight=1
2018-03-11 12:42:46 +01:00
# Remove the dedicated systemd config
ynh_remove_systemd_config
2021-08-31 21:26:01 +02:00
#=================================================
2022-01-27 01:16:53 +01:00
# REMOVE LOGROTATE CONFIGURATION
2021-08-31 21:26:01 +02:00
#=================================================
2022-01-27 01:16:53 +01:00
ynh_script_progression --message="Removing logrotate configuration..." --weight=1
2021-08-31 21:26:01 +02:00
2022-01-27 01:16:53 +01:00
# Remove the app-specific logrotate config
ynh_remove_logrotate
2021-08-31 21:26:01 +02:00
2018-03-11 12:42:46 +01:00
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2021-08-31 15:55:02 +02:00
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
2018-03-11 12:42:46 +01:00
2021-03-25 17:00:29 +01:00
# Remove the dedicated NGINX config
2018-03-11 12:42:46 +01:00
ynh_remove_nginx_config
#=================================================
2022-01-27 01:16:53 +01:00
# REMOVE DEPENDENCIES
2018-03-11 12:42:46 +01:00
#=================================================
2023-03-16 22:35:56 +01:00
ynh_script_progression --message="Removing dependencies..." --weight=1
2017-04-08 00:06:50 +02:00
2022-01-27 01:16:53 +01:00
# Remove metapackage and its dependencies
ynh_remove_nodejs
2017-04-08 00:06:50 +02:00
2021-03-25 17:00:29 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2021-08-31 15:55:02 +02:00
ynh_script_progression --message="Removal of $app completed" --last