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

99 lines
3.2 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)
port=$(ynh_app_setting_get --app=$app --key=port)
port_hub=$(ynh_app_setting_get --app=$app --key=port_hub)
port_http_proxy=$(ynh_app_setting_get --app=$app --key=port_http_proxy)
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
#=================================================
# REMOVE SERVICE FROM ADMIN PANEL
#=================================================
# Remove a service from the admin panel, added by `yunohost service add`
2019-08-14 00:07:10 +02:00
if ynh_exec_warn_less yunohost service status $app >/dev/null
then
ynh_script_progression --message="Removing $app service..." --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 DEPENDENCIES
2018-12-28 21:59:37 +01:00
#=================================================
2019-08-14 00:07:10 +02:00
ynh_script_progression --message="Removing dependencies..." --weight=4
2018-12-28 21:59:37 +01:00
2019-08-14 00:07:10 +02:00
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
2018-12-28 21:59:37 +01:00
2019-08-14 00:07:10 +02:00
ynh_remove_nodejs
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
#=================================================
2019-08-14 00:07:10 +02:00
ynh_script_progression --message="Removing nginx web server configuration..." --weight=1
2018-12-28 21:59:37 +01:00
2019-08-14 00:07:10 +02:00
# Remove the dedicated nginx config
2018-12-28 21:59:37 +01:00
ynh_remove_nginx_config
#=================================================
2019-08-14 00:07:10 +02:00
# CLOSE A PORT
#=================================================
if yunohost firewall list | grep -q "\- $port$"
then
ynh_script_progression --message="Closing port $port..."
ynh_exec_warn_less yunohost firewall disallow TCP $port
fi
if yunohost firewall list | grep -q "\- $port_hub$"
then
ynh_script_progression --message="Closing port $port_hub..."
ynh_exec_warn_less yunohost firewall disallow TCP $port_hub
fi
if yunohost firewall list | grep -q "\- $port_http_proxy$"
then
ynh_script_progression --message="Closing port $port_http_proxy..."
ynh_exec_warn_less yunohost firewall disallow TCP $port_http_proxy
fi
#=================================================
# 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