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

73 lines
2.4 KiB
Text
Raw Normal View History

2018-12-28 21:59:37 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2019-08-14 00:07:10 +02:00
source _common.sh
2018-12-28 21:59:37 +01:00
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2019-08-14 00:07:10 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2018-12-28 21:59:37 +01:00
app=$YNH_APP_INSTANCE_NAME
2019-08-14 00:07:10 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2018-12-28 21:59:37 +01:00
#=================================================
# STANDARD REMOVE
2018-12-30 16:00:54 +01:00
#=================================================
2022-03-11 00:23:07 +01:00
# REMOVE SERVICE INTEGRATION IN YUNOHOST
2018-12-30 16:00:54 +01:00
#=================================================
2022-03-11 00:23:07 +01:00
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
2019-08-14 00:07:10 +02:00
if ynh_exec_warn_less yunohost service status $app >/dev/null
then
2022-03-11 00:23:07 +01:00
ynh_script_progression --message="Removing $app service integration..."--weight=2
2018-12-30 16:00:54 +01:00
yunohost service remove $app
fi
2018-12-28 21:59:37 +01:00
#=================================================
2019-08-14 00:07:10 +02:00
# STOP AND REMOVE SERVICE
2018-12-28 21:59:37 +01:00
#=================================================
2019-08-14 00:07:10 +02:00
ynh_script_progression --message="Stopping and removing the systemd service..." --weight=2
2018-12-28 21:59:37 +01:00
2019-08-14 00:07:10 +02:00
# Remove the dedicated systemd config
ynh_remove_systemd_config
2018-12-28 21:59:37 +01:00
#=================================================
2019-08-14 00:07:10 +02:00
# REMOVE APP MAIN DIR
2018-12-28 21:59:37 +01:00
#=================================================
2019-08-14 00:07:10 +02:00
ynh_script_progression --message="Removing app main directory..." --weight=1
2018-12-28 21:59:37 +01:00
2019-08-14 00:07:10 +02:00
# Remove the app directory securely
ynh_secure_remove --file="$final_path"
2018-12-28 21:59:37 +01:00
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2021-01-08 22:23:01 +01:00
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
2018-12-28 21:59:37 +01:00
2021-01-08 22:23:01 +01:00
# Remove the dedicated NGINX config
2018-12-28 21:59:37 +01:00
ynh_remove_nginx_config
2020-12-20 11:52:54 +01:00
#=================================================
2022-03-11 00:23:07 +01:00
# REMOVE DEPENDENCIES
2020-12-20 11:52:54 +01:00
#=================================================
2022-03-11 00:23:07 +01:00
ynh_script_progression --message="Removing dependencies..." --weight=4
2020-12-20 11:52:54 +01:00
2022-03-11 00:23:07 +01:00
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
ynh_remove_nodejs
2020-12-20 11:52:54 +01:00
2019-08-14 00:07:10 +02:00
#=================================================
# END OF SCRIPT
2018-12-28 21:59:37 +01:00
#=================================================
2019-08-14 00:07:10 +02:00
ynh_script_progression --message="Removal of $app completed" --last