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

33 lines
967 B
Text
Raw Normal View History

2018-12-28 21:59:37 +01:00
#!/bin/bash
#=================================================
# 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
#=================================================
2024-03-21 23:29:19 +01:00
# REMOVE SYSTEM CONFIGURATIONS
2018-12-30 16:00:54 +01:00
#=================================================
2023-12-22 17:09:44 +01:00
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
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`)
2024-03-21 23:29:19 +01:00
if ynh_exec_warn_less yunohost service status "$app" >/dev/null; then
yunohost service remove "$app"
2018-12-30 16:00:54 +01:00
fi
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
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
2022-03-11 00:23:07 +01:00
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