2017-03-25 18:31:20 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-12-31 23:19:32 +01:00
|
|
|
source ../settings/scripts/_common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2017-03-25 18:31:20 +01:00
|
|
|
#=================================================
|
2021-06-06 09:07:27 +02:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2017-03-25 18:31:20 +01:00
|
|
|
#=================================================
|
2024-09-02 14:47:01 +02:00
|
|
|
ynh_script_progression "Restoring the app main directory..."
|
2022-01-16 22:18:44 +01:00
|
|
|
|
2024-09-02 14:47:01 +02:00
|
|
|
ynh_restore "$install_dir"
|
2017-03-25 18:31:20 +01:00
|
|
|
|
|
|
|
#=================================================
|
2022-04-08 17:30:08 +02:00
|
|
|
# RESTORE THE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2024-09-02 14:47:01 +02:00
|
|
|
ynh_script_progression "Reconfiguring PHP-FPM..."
|
2022-04-08 17:30:08 +02:00
|
|
|
|
2024-09-02 14:47:01 +02:00
|
|
|
ynh_restore "/etc/php/$php_version/fpm/pool.d/$app.conf"
|
2022-04-08 17:30:08 +02:00
|
|
|
|
2024-09-02 14:47:01 +02:00
|
|
|
ynh_restore "/etc/nginx/conf.d/$domain.d/$app.conf"
|
2022-04-08 17:30:08 +02:00
|
|
|
|
2024-09-02 14:47:01 +02:00
|
|
|
ynh_mysql_db_shell < ./db.sql
|
2017-03-25 18:31:20 +01:00
|
|
|
|
2020-12-31 23:19:32 +01:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX AND PHP-FPM
|
|
|
|
#=================================================
|
2024-09-02 14:47:01 +02:00
|
|
|
ynh_script_progression "Reloading NGINX web server and PHP-FPM..."
|
2020-12-31 23:19:32 +01:00
|
|
|
|
2024-09-02 14:47:01 +02:00
|
|
|
ynh_systemctl --service=php$php_version-fpm --action=reload
|
|
|
|
ynh_systemctl --service=nginx --action=reload
|
2020-12-31 23:19:32 +01:00
|
|
|
|
2017-03-25 18:31:20 +01:00
|
|
|
#=================================================
|
2020-12-31 23:19:32 +01:00
|
|
|
# END OF SCRIPT
|
2017-03-25 18:31:20 +01:00
|
|
|
#=================================================
|
|
|
|
|
2024-09-02 14:47:01 +02:00
|
|
|
ynh_script_progression "Restoration completed for $app"
|