2017-12-14 23:53:33 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
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
|
|
|
#=================================================
|
2024-08-31 15:06:53 +02:00
|
|
|
ynh_script_progression "Restoring the app main directory..."
|
2017-12-14 23:53:33 +01:00
|
|
|
|
2024-08-31 15:06:53 +02:00
|
|
|
ynh_restore "$install_dir"
|
2021-07-20 08:30:59 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE DATA DIRECTORY
|
|
|
|
#=================================================
|
2024-08-31 15:06:53 +02:00
|
|
|
ynh_script_progression "Restoring the data directory..."
|
2021-07-20 08:30:59 +02:00
|
|
|
|
2024-08-31 15:06:53 +02:00
|
|
|
ynh_restore "$data_dir"
|
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
|
|
|
#=================================================
|
2023-03-30 17:49:45 +02:00
|
|
|
# RESTORE THE POSTGRESQL DATABASE
|
2022-05-22 16:09:44 +02:00
|
|
|
#=================================================
|
2024-08-31 15:06:53 +02:00
|
|
|
ynh_script_progression "Restoring the PostgreSQL database..."
|
2022-05-22 16:09:44 +02:00
|
|
|
|
2024-08-31 15:06:53 +02:00
|
|
|
ynh_psql_db_shell < ./db.sql
|
2022-05-22 16:09:44 +02:00
|
|
|
|
2022-06-19 21:58:27 +02:00
|
|
|
#=================================================
|
2023-03-30 17:49:45 +02:00
|
|
|
# RESTORE SYSTEM CONFIGURATIONS
|
2020-03-24 15:10:51 +01:00
|
|
|
#=================================================
|
2023-03-30 17:49:45 +02:00
|
|
|
# RESTORE THE PHP-FPM CONFIGURATION
|
2020-03-24 15:10:51 +01:00
|
|
|
#=================================================
|
2024-08-31 15:06:53 +02:00
|
|
|
ynh_script_progression "Restoring system configurations related to $app..."
|
2020-03-24 15:10:51 +01:00
|
|
|
|
2024-08-31 15:06:53 +02:00
|
|
|
ynh_restore "/etc/php/$php_version/fpm/pool.d/$app.conf"
|
2017-12-14 23:53:33 +01:00
|
|
|
|
2024-08-31 15:06:53 +02:00
|
|
|
ynh_restore "/etc/nginx/conf.d/$domain.d/$app.conf"
|
2017-12-14 23:53:33 +01:00
|
|
|
|
2024-08-31 15:06:53 +02:00
|
|
|
ynh_restore "/etc/cron.d/$app"
|
2017-12-14 23:53:33 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX AND PHP-FPM
|
|
|
|
#=================================================
|
2024-08-31 15:06:53 +02:00
|
|
|
ynh_script_progression "Reloading NGINX web server and PHP-FPM..."
|
2020-03-24 15:10:51 +01:00
|
|
|
|
2024-08-31 15:06:53 +02:00
|
|
|
ynh_systemctl --service=php$php_version-fpm --action=reload
|
|
|
|
ynh_systemctl --service=nginx --action=reload
|
2020-03-24 15:10:51 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2017-12-14 23:53:33 +01:00
|
|
|
|
2024-08-31 15:06:53 +02:00
|
|
|
ynh_script_progression "Restoration completed for $app"
|