2018-10-30 10:25:13 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
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
|
|
|
#=================================================
|
2024-09-02 17:02:53 +02:00
|
|
|
ynh_script_progression "Restoring the app main directory..."
|
2022-02-03 12:04:20 +01:00
|
|
|
|
2024-09-02 17:02:53 +02:00
|
|
|
ynh_restore "$install_dir"
|
2022-02-03 12:04:20 +01:00
|
|
|
|
2019-07-01 22:17:06 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE MYSQL DATABASE
|
|
|
|
#=================================================
|
2024-09-02 17:02:53 +02:00
|
|
|
ynh_script_progression "Restoring the MySQL database..."
|
2019-07-01 22:17:06 +02:00
|
|
|
|
2024-09-02 17:02:53 +02:00
|
|
|
ynh_mysql_db_shell < ./db.sql
|
2018-10-30 10:25:13 +01:00
|
|
|
|
2018-10-31 15:43:26 +01:00
|
|
|
#=================================================
|
2023-04-18 13:38:40 +02:00
|
|
|
# RESTORE THE PHP-FPM CONFIGURATION
|
2018-10-31 15:43:26 +01:00
|
|
|
#=================================================
|
2024-09-02 17:02:53 +02:00
|
|
|
ynh_script_progression "Restoring the PHP-FPM configuration..."
|
2023-04-18 13:38:40 +02:00
|
|
|
|
2024-09-02 17:02:53 +02:00
|
|
|
ynh_restore "/etc/php/$php_version/fpm/pool.d/$app.conf"
|
2023-04-18 13:38:40 +02:00
|
|
|
|
2024-09-02 17:02:53 +02:00
|
|
|
ynh_restore "/etc/nginx/conf.d/$domain.d/$app.conf"
|
2018-10-31 15:43:26 +01:00
|
|
|
|
2024-09-02 17:02:53 +02:00
|
|
|
ynh_restore "/etc/cron.d/$app"
|
2018-10-31 15:43:26 +01:00
|
|
|
|
2018-10-30 10:25:13 +01:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX AND PHP-FPM
|
|
|
|
#=================================================
|
2024-09-02 17:02:53 +02:00
|
|
|
ynh_script_progression "Reloading NGINX web server and PHP-FPM..."
|
2018-10-30 10:25:13 +01:00
|
|
|
|
2024-09-02 17:02:53 +02:00
|
|
|
ynh_systemctl --service=php$php_version-fpm --action=reload
|
|
|
|
ynh_systemctl --service=nginx --action=reload
|
2019-07-01 22:17:06 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-09-02 17:02:53 +02:00
|
|
|
ynh_script_progression "Restoration completed for $app"
|