scratch_ynh/scripts/restore

40 lines
1.4 KiB
Text
Raw Permalink Normal View History

2018-11-29 11:55:24 +01:00
#!/bin/bash
2021-06-27 15:43:18 +02:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2018-11-29 11:55:24 +01:00
2021-06-27 15:43:18 +02:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2021-06-27 18:51:27 +02:00
ynh_script_progression --message="Restoring the app main directory..." --weight=3
2021-06-27 15:43:18 +02:00
2023-07-20 23:20:17 +02:00
ynh_restore_file --origin_path="$install_dir"
2021-06-27 15:43:18 +02:00
2023-07-20 23:20:17 +02:00
chmod -R o-rwx "$install_dir"
2024-06-20 20:50:26 +02:00
chown -R "$app:www-data" "$install_dir"
2021-06-27 15:43:18 +02:00
2023-10-02 23:00:47 +02:00
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Restoring the NGINX configuration..." --weight=1
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2021-06-27 15:43:18 +02:00
#=================================================
2024-05-13 11:29:16 +02:00
# RELOAD NGINX AND PHP-FPM OR THE APP SERVICE
2021-06-27 15:43:18 +02:00
#=================================================
2024-06-20 22:07:27 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2021-06-27 15:43:18 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2018-11-29 11:55:24 +01:00
2021-06-27 15:43:18 +02:00
ynh_script_progression --message="Restoration completed for $app" --last