2017-12-14 23:53:33 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2020-03-24 15:10:51 +01:00
|
|
|
|
2022-06-19 21:58:27 +02:00
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2020-03-24 15:10:51 +01:00
|
|
|
source ../settings/scripts/_common.sh
|
2020-04-11 02:27:49 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2017-12-14 23:53:33 +01:00
|
|
|
|
|
|
|
#=================================================
|
2021-06-19 18:49:20 +02:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2017-12-14 23:53:33 +01:00
|
|
|
#=================================================
|
2021-07-20 08:30:59 +02:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=1
|
2021-06-19 18:49:20 +02:00
|
|
|
|
2023-03-02 13:58:19 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2017-12-14 23:53:33 +01:00
|
|
|
|
2023-03-02 13:58:19 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-07-20 08:30:59 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE DATA DIRECTORY
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the data directory..." --weight=1
|
|
|
|
|
2023-03-02 13:58:19 +01:00
|
|
|
ynh_restore_file --origin_path="$data_dir" --not_mandatory
|
2021-07-20 08:30:59 +02:00
|
|
|
|
2023-03-02 13:58:19 +01:00
|
|
|
chown -R $app:www-data "$data_dir"
|
2020-03-24 15:10:51 +01:00
|
|
|
|
2022-05-22 16:09:44 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring PHP-FPM configuration..." --weight=1
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
|
|
|
|
|
|
|
|
# Recreate a dedicated php-fpm config
|
|
|
|
ynh_add_fpm_config --usage=$fpm_usage --footprint=$fpm_footprint --phpversion=$phpversion
|
|
|
|
|
2022-06-19 21:58:27 +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"
|
|
|
|
|
2020-03-24 15:10:51 +01:00
|
|
|
#=================================================
|
2020-03-25 10:48:11 +01:00
|
|
|
# RESTORE THE POSTGRESQL DATABASE
|
2020-03-24 15:10:51 +01:00
|
|
|
#=================================================
|
2020-03-25 17:40:27 +01:00
|
|
|
ynh_script_progression --message="Restoring the PostgreSQL database..." --weight=47
|
2020-03-24 15:10:51 +01:00
|
|
|
|
2021-03-14 19:01:23 +01:00
|
|
|
ynh_psql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql
|
2017-12-14 23:53:33 +01:00
|
|
|
|
|
|
|
#=================================================
|
2022-06-19 21:58:27 +02:00
|
|
|
# RESTORE VARIOUS FILES
|
2017-12-14 23:53:33 +01:00
|
|
|
#=================================================
|
2022-06-19 21:58:27 +02:00
|
|
|
ynh_script_progression --message="Restoring various files..." --weight=3
|
2017-12-14 23:53:33 +01:00
|
|
|
|
2020-03-24 15:10:51 +01:00
|
|
|
ynh_restore_file --origin_path="/etc/cron.d/$app"
|
2021-12-12 10:25:13 +01:00
|
|
|
chown root: "/etc/cron.d/$app"
|
|
|
|
chmod 644 "/etc/cron.d/$app"
|
2017-12-14 23:53:33 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX AND PHP-FPM
|
|
|
|
#=================================================
|
2021-02-25 15:10:59 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server and PHP-FPM..." --weight=1
|
2020-03-24 15:10:51 +01:00
|
|
|
|
2020-11-30 21:43:05 +01:00
|
|
|
ynh_systemd_action --service_name=php$phpversion-fpm --action=reload
|
2020-03-24 15:10:51 +01:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2017-12-14 23:53:33 +01:00
|
|
|
|
2021-07-20 08:30:59 +02:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|