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

54 lines
1.7 KiB
Text
Raw Normal View History

2018-11-21 16:11:09 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2020-05-21 12:49:24 +02:00
source _common.sh
2018-11-21 16:11:09 +01:00
source /usr/share/yunohost/helpers
#=================================================
# STANDARD REMOVE
2020-05-22 18:59:38 +02:00
#=================================================
# REMOVE SERVICE INTEGRATION IN YUNOHOST
#=================================================
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
2020-05-22 18:59:38 +02:00
if ynh_exec_warn_less yunohost service status $app >/dev/null
then
ynh_script_progression --message="Removing $app service..." --weight=1
yunohost service remove $app
fi
2019-03-13 16:44:42 +01:00
#=================================================
# STOP AND REMOVE SERVICE
#=================================================
2020-05-21 12:49:24 +02:00
ynh_script_progression --message="Stopping and removing the systemd service..." --weight=1
2018-11-21 16:11:09 +01:00
2019-03-13 16:44:42 +01:00
# Remove the dedicated systemd config
ynh_remove_systemd_config
2018-11-21 16:11:09 +01:00
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2020-10-12 22:05:07 +02:00
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=5
2018-11-21 16:11:09 +01:00
2020-10-12 22:05:07 +02:00
# Remove the dedicated NGINX config
2018-11-21 16:11:09 +01:00
ynh_remove_nginx_config
#=================================================
# REMOVE DEPENDENCIES
#=================================================
ynh_script_progression --message="Removing dependencies..." --weight=1
# Remove metapackage and its dependencies
ynh_remove_nodejs
2019-03-13 16:44:42 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Removal of $app completed" --last