2020-11-02 12:24:37 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source ../settings/scripts/_common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2021-06-04 21:37:11 +02:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2020-11-02 12:24:37 +01:00
|
|
|
#=================================================
|
2024-08-31 08:57:40 +02:00
|
|
|
ynh_script_progression "Restoring the app main directory..."
|
2021-06-04 21:37:11 +02:00
|
|
|
|
2024-08-31 08:57:40 +02:00
|
|
|
ynh_restore "$install_dir"
|
2020-11-02 12:24:37 +01:00
|
|
|
|
2023-11-23 09:47:20 +01:00
|
|
|
#=================================================
|
|
|
|
# RESTORE SYSTEM CONFIGURATIONS
|
2022-05-14 11:08:11 +02:00
|
|
|
#=================================================
|
2024-08-31 08:57:40 +02:00
|
|
|
ynh_script_progression "Restoring system configurations related to $app..."
|
2022-05-14 11:08:11 +02:00
|
|
|
|
2024-08-31 08:57:40 +02:00
|
|
|
ynh_restore "/etc/php/$php_version/fpm/pool.d/$app.conf"
|
2022-05-14 11:08:11 +02:00
|
|
|
|
2024-08-31 08:57:40 +02:00
|
|
|
ynh_restore "/etc/nginx/conf.d/$domain.d/$app.conf"
|
2022-08-25 13:52:23 +02:00
|
|
|
|
2020-11-02 12:24:37 +01:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX AND PHP-FPM
|
|
|
|
#=================================================
|
2024-08-31 08:57:40 +02:00
|
|
|
ynh_script_progression "Reloading NGINX web server and PHP-FPM..."
|
2020-11-02 12:24:37 +01:00
|
|
|
|
2024-08-31 08:57:40 +02:00
|
|
|
ynh_systemctl --service=php$php_version-fpm --action=reload
|
|
|
|
ynh_systemctl --service=nginx --action=reload
|
2020-11-02 12:24:37 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-08-31 08:57:40 +02:00
|
|
|
ynh_script_progression "Restoration completed for $app"
|