2019-01-26 16:40:36 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# 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
|
|
|
|
|
|
|
|
#=================================================
|
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
|
|
|
|
2023-11-27 17:13:12 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2019-01-26 16:40:36 +01:00
|
|
|
|
2023-11-27 17:13:12 +01:00
|
|
|
chown -R root: $install_dir/
|
|
|
|
chown -R $admin: $install_dir/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
|
|
|
|
#=================================================
|
2023-12-22 17:09:44 +01:00
|
|
|
ynh_script_progression --message="Reinstalling dependencies..." --weight=15
|
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
|
2022-03-11 00:23:07 +01:00
|
|
|
ynh_use_nodejs
|
|
|
|
$ynh_npm install -g configurable-http-proxy
|
2019-08-14 00:07:10 +02:00
|
|
|
|
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
|
|
|
|
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"
|
2020-12-20 11:33:16 +01:00
|
|
|
systemctl enable $app.service --quiet
|
2019-01-26 16:40:36 +01:00
|
|
|
|
2023-11-27 17:21:33 +01:00
|
|
|
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
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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
|
|
|
|
2022-03-11 00:23:07 +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
|