2020-11-09 13:27:06 +01:00
|
|
|
#!/bin/bash
|
2017-03-03 21:26:30 +01:00
|
|
|
|
2020-11-09 13:27:06 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2021-05-22 13:13:46 +02:00
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2020-11-09 13:27:06 +01:00
|
|
|
source ../settings/scripts/_common.sh
|
2017-03-03 21:26:30 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2020-11-09 13:27:06 +01:00
|
|
|
#=================================================
|
2021-05-22 13:13:46 +02:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2020-11-09 13:27:06 +01:00
|
|
|
#=================================================
|
2021-05-22 13:13:46 +02:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..."
|
2020-11-09 13:27:06 +01:00
|
|
|
|
2023-12-13 16:28:15 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2022-07-12 03:19:44 +02:00
|
|
|
|
2023-12-13 16:28:15 +01:00
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
2024-01-19 17:41:44 +01:00
|
|
|
chown -R "$app:$app" "$install_dir"
|
2020-11-09 13:27:06 +01:00
|
|
|
|
2022-07-12 03:19:44 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE DATA DIRECTORY
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the data directory..."
|
|
|
|
|
2023-12-13 16:28:15 +01:00
|
|
|
ynh_restore_file --origin_path="$data_dir" --not_mandatory
|
2020-11-09 13:27:06 +01:00
|
|
|
|
2023-12-13 16:28:15 +01:00
|
|
|
chmod 750 "$data_dir"
|
|
|
|
chmod -R o-rwx "$data_dir"
|
2024-01-19 17:41:44 +01:00
|
|
|
chown -R "$app:$app" "$data_dir"
|
2022-07-12 03:19:44 +02:00
|
|
|
|
2021-05-23 09:48:04 +02:00
|
|
|
#=================================================
|
|
|
|
# BUILDING ZERONET
|
|
|
|
#=================================================
|
2024-01-19 17:41:44 +01:00
|
|
|
ynh_script_progression --message="Updating virtualenv..."
|
2021-05-23 09:48:04 +02:00
|
|
|
|
2024-01-19 17:41:44 +01:00
|
|
|
ynh_exec_as "$app" python3 -m venv --upgrade "$install_dir/venv"
|
2020-11-09 13:27:06 +01:00
|
|
|
|
|
|
|
#=================================================
|
2024-01-19 17:41:44 +01:00
|
|
|
# RESTORE SYSTEM CONFIGURATIONS
|
2020-11-09 13:27:06 +01:00
|
|
|
#=================================================
|
2024-01-19 17:41:44 +01:00
|
|
|
ynh_script_progression --message="Restoring system configurations related to $app..." --weight=1
|
2020-11-09 13:27:06 +01:00
|
|
|
|
2024-01-19 17:41:44 +01:00
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2020-11-09 13:27:06 +01:00
|
|
|
|
2024-01-19 17:41:44 +01:00
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
|
|
|
|
systemctl enable "$app.service" --quiet
|
|
|
|
yunohost service add "$app" --description="$app service" --log="$data_dir/log/debug-last.log" --needs_exposed_ports="$port_fs"
|
2020-11-09 13:27:06 +01:00
|
|
|
|
|
|
|
#=================================================
|
2024-01-19 17:41:44 +01:00
|
|
|
# RELOAD NGINX AND PHP-FPM OR THE APP SERVICE
|
2020-11-09 13:27:06 +01:00
|
|
|
#=================================================
|
2024-01-19 17:41:44 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server and $app's service..." --weight=1
|
2020-11-09 13:27:06 +01:00
|
|
|
|
2024-01-19 17:41:44 +01:00
|
|
|
ynh_systemd_action --service_name="$app" --action="start" --log_path="/var/log/$app/$app.log"
|
2020-11-09 13:27:06 +01:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2017-03-03 21:26:30 +01:00
|
|
|
|
2020-11-26 11:32:52 +01:00
|
|
|
ynh_script_progression --message="Restoration completed for $app"
|