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

127 lines
4.4 KiB
Text
Raw Normal View History

2019-01-26 16:40:36 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2019-08-14 00:07:10 +02:00
#Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
2019-01-26 16:40:36 +01:00
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
2019-08-14 00:07:10 +02:00
ynh_clean_setup () {
ynh_clean_check_starting
2019-01-26 16:40:36 +01:00
}
2019-08-14 00:07:10 +02:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2019-01-26 16:40:36 +01:00
#=================================================
# LOAD SETTINGS
#=================================================
2020-12-20 11:52:54 +01:00
ynh_script_progression --message="Loading settings..." --weight=1
2019-01-26 16:40:36 +01:00
2019-08-14 00:07:10 +02:00
app=$YNH_APP_INSTANCE_NAME
admin=$(ynh_app_setting_get --app=$app --key=admin)
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2019-01-26 16:40:36 +01:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2020-12-20 11:52:54 +01:00
ynh_script_progression --message="Validating restoration parameters..." --weight=1
2019-01-26 16:40:36 +01:00
2019-08-14 00:07:10 +02:00
ynh_webpath_available --domain=$domain --path_url=$path_url \
|| ynh_die --message="Path not available: ${domain}${path_url}"
test ! -d $final_path \
|| ynh_die --message="There is already a directory: $final_path "
2019-01-26 16:40:36 +01:00
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
2019-08-14 00:07:10 +02:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2019-01-26 16:40:36 +01:00
#=================================================
2019-08-14 00:07:10 +02:00
# RESTORE THE APP MAIN DIR
2019-01-26 16:40:36 +01:00
#=================================================
2020-12-20 11:52:54 +01:00
ynh_script_progression --message="Restoring the app main directory..." --weight=5
2019-01-26 16:40:36 +01:00
2019-08-14 00:07:10 +02:00
ynh_restore_file --origin_path="$final_path"
2019-01-26 16:40:36 +01:00
2020-12-20 11:52:54 +01:00
#=================================================
# RECREATE THE DEDICATED USER
#=================================================
ynh_script_progression --message="Recreating the dedicated system user..." --weight=1
# Create the dedicated user (if not existing)
ynh_system_user_create --username=$app
2019-01-26 16:40:36 +01:00
#=================================================
2019-08-14 00:07:10 +02:00
# RESTORE USER RIGHTS
2019-01-26 16:40:36 +01:00
#=================================================
2019-08-14 00:07:10 +02:00
# Restore permissions on app files
2020-04-28 19:43:29 +02:00
chown -R root: $final_path/
chown -R $admin: $final_path/.venv/
2019-01-26 16:40:36 +01:00
#=================================================
2019-08-14 00:07:10 +02:00
# SPECIFIC RESTORATION
2019-01-26 16:40:36 +01:00
#=================================================
2019-08-14 00:07:10 +02:00
# REINSTALL DEPENDENCIES
#=================================================
2019-08-18 00:02:04 +02:00
ynh_script_progression --message="Reinstalling dependencies..." --weight=75
2019-01-26 16:40:36 +01:00
2019-08-14 00:07:10 +02:00
# Define and install dependencies
ynh_install_app_dependencies $pkg_dependencies
2019-01-26 16:40:36 +01:00
2020-04-27 13:22:30 +02:00
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
2019-01-26 16:40:36 +01:00
2020-02-21 09:31:30 +01:00
python3 -m pip install pipenv
2019-08-14 00:07:10 +02:00
npm install -g configurable-http-proxy
2019-01-26 16:40:36 +01:00
#=================================================
# RESTORE SYSTEMD
#=================================================
2020-12-20 11:52:54 +01:00
ynh_script_progression --message="Restoring the systemd configuration..." --weight=2
2019-01-26 16:40:36 +01:00
2019-08-14 00:07:10 +02:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
2020-12-20 11:33:16 +01:00
systemctl enable $app.service --quiet
2019-01-26 16:40:36 +01:00
2019-08-14 00:07:10 +02:00
#=================================================
# ADVERTISE SERVICE IN ADMIN PANEL
#=================================================
2020-12-20 11:33:16 +01:00
yunohost service add $app --description="$app daemon" --log="$app"
2019-08-14 00:07:10 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2020-12-20 11:52:54 +01:00
ynh_script_progression --message="Starting a systemd service..." --weight=5
2019-08-14 00:07:10 +02: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
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX
#=================================================
2021-01-08 22:23:01 +01:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
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