2017-02-07 02:00:31 +01:00
|
|
|
#!/bin/bash
|
2017-02-08 23:15:36 +01:00
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2017-02-08 23:15:36 +01:00
|
|
|
|
2021-07-12 12:16:32 +02:00
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2018-03-14 03:32:18 +01:00
|
|
|
source ../settings/scripts/_common.sh
|
2021-07-12 12:16:32 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2017-02-08 23:15:36 +01:00
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
2021-07-12 12:11:43 +02:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
2021-07-12 12:11:43 +02:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=1
|
|
|
|
|
2024-01-23 16:40:33 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2017-02-07 02:00:31 +01:00
|
|
|
|
2024-01-23 16:40:33 +01:00
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-07-12 13:10:03 +02:00
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
2022-06-15 23:45:27 +02:00
|
|
|
# RESTORE THE DATA DIRECTORY
|
2021-07-12 12:11:43 +02:00
|
|
|
#=================================================
|
2022-06-16 00:33:32 +02:00
|
|
|
ynh_script_progression --message="Restoring the data directory..." --weight=2
|
2021-07-12 12:11:43 +02:00
|
|
|
|
2024-01-23 16:40:33 +01:00
|
|
|
ynh_restore_file --origin_path="$data_dir" --not_mandatory
|
2022-06-16 00:33:32 +02:00
|
|
|
|
2024-01-23 16:40:33 +01:00
|
|
|
chmod 750 "$data_dir"
|
|
|
|
chmod -R o-rwx "$data_dir"
|
|
|
|
chown -R "$app:www-data" "$data_dir"
|
2021-07-12 12:11:43 +02:00
|
|
|
|
|
|
|
#=================================================
|
2024-01-23 16:40:33 +01:00
|
|
|
# RESTORE THE MYSQL DATABASE
|
2021-07-12 12:11:43 +02:00
|
|
|
#=================================================
|
2024-01-23 16:40:33 +01:00
|
|
|
ynh_script_progression --message="Restoring the MySQL database..." --weight=1
|
2021-07-12 12:11:43 +02:00
|
|
|
|
2024-01-23 16:40:33 +01:00
|
|
|
ynh_mysql_connect_as --user="$db_user" --password="$db_pwd" --database="$db_name" < ./db.sql
|
2021-07-12 12:11:43 +02:00
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
2024-01-23 16:40:33 +01:00
|
|
|
# RESTORE SYSTEM CONFIGURATIONS
|
2021-07-12 12:11:43 +02:00
|
|
|
#=================================================
|
2024-01-23 16:40:33 +01:00
|
|
|
ynh_script_progression --message="Restoring system configurations related to $app..." --weight=1
|
2021-07-12 12:11:43 +02:00
|
|
|
|
2022-06-15 23:45:27 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
|
2018-03-13 21:49:11 +01:00
|
|
|
|
2022-06-15 23:45:27 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2022-01-14 01:29:27 +01:00
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
2021-07-12 12:11:43 +02:00
|
|
|
# GENERIC FINALIZATION
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX AND PHP-FPM
|
|
|
|
#=================================================
|
2021-07-12 12:11:43 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server and PHP-FPM..." --weight=1
|
2018-03-13 21:49:11 +01:00
|
|
|
|
2024-01-23 16:40:33 +01:00
|
|
|
ynh_systemd_action --service_name="php$phpversion-fpm" --action=reload
|
2021-07-12 12:11:43 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2018-03-13 21:49:11 +01:00
|
|
|
|
2021-07-12 12:11:43 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|