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/restore

55 lines
2 KiB
Text
Raw Normal View History

2019-01-26 16:40:36 +01:00
#!/bin/bash
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2022-03-11 00:23:07 +01:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2019-08-14 00:07:10 +02:00
source ../settings/scripts/_common.sh
2019-01-26 16:40:36 +01:00
source /usr/share/yunohost/helpers
#=================================================
2024-03-21 23:29:19 +01:00
# REINSTALL DEPENDENCIES
2019-01-26 16:40:36 +01:00
#=================================================
2024-03-21 23:29:19 +01:00
ynh_script_progression --message="Reinstalling NodeJS..." --weight=15
2019-01-26 16:40:36 +01:00
2024-03-21 23:29:19 +01:00
ynh_exec_warn_less ynh_install_nodejs --nodejs_version="$nodejs_version"
ynh_use_nodejs
2019-01-26 16:40:36 +01:00
2024-03-21 23:29:19 +01:00
ynh_exec_warn_less "$ynh_npm" install -g configurable-http-proxy
2019-01-26 16:40:36 +01:00
#=================================================
2024-03-21 23:29:19 +01:00
# RESTORE THE APP MAIN DIR
2019-08-14 00:07:10 +02:00
#=================================================
2024-03-21 23:29:19 +01:00
ynh_script_progression --message="Restoring the app main directory..." --weight=5
2019-01-26 16:40:36 +01:00
2024-03-21 23:29:19 +01:00
ynh_restore_file --origin_path="$install_dir"
2024-03-21 23:30:26 +01:00
chown -R "$app:$app" "$install_dir"
2019-08-14 00:07:10 +02:00
2019-01-26 16:40:36 +01:00
#=================================================
# RESTORE SYSTEMD
#=================================================
2023-12-28 22:58:05 +01:00
ynh_script_progression --message="Restoring system configurations related to $app..." --weight=1
2019-01-26 16:40:36 +01:00
2023-11-27 17:21:33 +01:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2019-08-14 00:07:10 +02:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
2024-03-21 23:29:19 +01:00
systemctl enable "$app.service" --quiet
yunohost service add "$app" --description="Console environment for running Python code" --log="/var/log/$app/$app.log"
2019-08-14 00:07:10 +02:00
#=================================================
2024-03-21 23:29:19 +01:00
# RELOAD NGINX AND PHP-FPM OR THE APP SERVICE
2019-08-14 00:07:10 +02:00
#=================================================
2024-03-21 23:29:19 +01:00
ynh_script_progression --message="Reloading NGINX web server and $app's service..." --weight=1
2019-08-14 00:07:10 +02:00
2024-03-21 23:29:19 +01:00
ynh_systemd_action --service_name="$app" --action="start" --line_match="JupyterHub is now running at" --log_path="systemd"
2019-01-26 16:40:36 +01:00
2019-08-14 00:07:10 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2019-01-26 16:40:36 +01:00
2019-08-18 00:02:04 +02:00
ynh_script_progression --message="Restoration completed for $app" --last