2018-10-30 10:25:13 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2022-06-18 18:16:35 +02:00
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2018-10-30 10:25:13 +01:00
|
|
|
source ../settings/scripts/_common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2021-05-26 10:12:13 +02:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2018-10-30 10:25:13 +01:00
|
|
|
#=================================================
|
2022-06-18 18:16:35 +02:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=3
|
2021-05-26 10:12:13 +02:00
|
|
|
|
2023-03-13 22:12:37 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2022-02-03 12:04:20 +01:00
|
|
|
|
2023-03-13 22:12:37 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2022-02-03 12:04:20 +01:00
|
|
|
|
2018-10-30 10:25:13 +01:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2022-06-18 18:16:35 +02:00
|
|
|
ynh_script_progression --message="Restoring the PHP-FPM configuration..." --weight=2
|
2018-10-30 10:25:13 +01:00
|
|
|
|
2020-05-31 00:00:08 +02:00
|
|
|
# Restore the file first, so it can have a backup if different
|
2020-06-02 15:17:09 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
|
2020-05-31 00:00:08 +02:00
|
|
|
|
2022-06-18 18:16:35 +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-12-01 11:58:34 +01:00
|
|
|
|
2019-07-01 22:17:06 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE MYSQL DATABASE
|
|
|
|
#=================================================
|
2021-07-10 18:27:01 +02:00
|
|
|
ynh_script_progression --message="Restoring the MySQL database..." --weight=1
|
2019-07-01 22:17:06 +02:00
|
|
|
|
|
|
|
ynh_mysql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql
|
2018-10-30 10:25:13 +01:00
|
|
|
|
2018-10-31 15:43:26 +01:00
|
|
|
#=================================================
|
2022-06-18 18:16:35 +02:00
|
|
|
# RESTORE VARIOUS FILES
|
2018-10-31 15:43:26 +01:00
|
|
|
#=================================================
|
2022-06-18 18:16:35 +02:00
|
|
|
ynh_script_progression --message="Restoring various files..." --weight=1
|
2018-10-31 15:43:26 +01:00
|
|
|
|
2019-07-01 22:17:06 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/cron.d/$app"
|
2021-10-07 16:50:27 +02:00
|
|
|
chown root: "/etc/cron.d/$app"
|
|
|
|
chmod 644 "/etc/cron.d/$app"
|
2018-10-31 15:43:26 +01:00
|
|
|
|
2018-10-30 10:25:13 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX AND PHP-FPM
|
|
|
|
#=================================================
|
2021-07-10 18:27:01 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server and PHP-FPM..." --weight=1
|
2018-10-30 10:25:13 +01:00
|
|
|
|
2020-06-02 15:17:09 +02:00
|
|
|
ynh_systemd_action --service_name=php$phpversion-fpm --action=reload
|
2019-07-01 22:17:06 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2022-04-27 14:52:20 +02:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|