2017-07-16 12:51:05 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2020-04-07 17:13:07 +02:00
|
|
|
source ../settings/scripts/_common.sh
|
2017-07-16 12:51:05 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD RESTORATION STEPS
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2022-02-26 20:24:27 +01:00
|
|
|
ynh_script_progression --message="Restoring the NGINX configuration..." --weight=1
|
2017-07-16 12:51:05 +02:00
|
|
|
|
2020-04-07 17:13:07 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2017-07-16 12:51:05 +02:00
|
|
|
|
2018-06-04 22:57:21 +02:00
|
|
|
#=================================================
|
2022-02-26 20:24:27 +01:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2018-06-04 22:57:21 +02:00
|
|
|
#=================================================
|
2022-02-27 11:23:56 +01:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=3
|
2022-02-26 20:24:27 +01:00
|
|
|
|
2023-03-05 12:42:46 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2018-06-04 22:57:21 +02:00
|
|
|
|
2023-03-05 12:42:46 +01:00
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2018-06-04 22:57:21 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2020-10-09 12:39:26 +02:00
|
|
|
ynh_script_progression --message="Reconfiguring PHP-FPM..." --weight=10
|
2018-06-04 22:57:21 +02:00
|
|
|
|
2020-09-25 19:26:57 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
|
2018-06-09 13:29:14 +02:00
|
|
|
|
2020-10-09 13:51:09 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE MYSQL DATABASE
|
|
|
|
#=================================================
|
2023-03-05 12:50:26 +01:00
|
|
|
ynh_script_progression --message="Restoring the MySQL database..." --weight=5
|
2020-10-09 13:51:09 +02:00
|
|
|
|
|
|
|
ynh_mysql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql
|
2020-10-09 12:39:26 +02:00
|
|
|
|
2018-06-04 22:57:21 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX AND PHP-FPM
|
|
|
|
#=================================================
|
2020-10-09 12:39:26 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server and PHP-FPM..." --weight=1
|
2020-04-07 17:13:07 +02:00
|
|
|
|
2020-09-25 19:26:57 +02:00
|
|
|
ynh_systemd_action --service_name=php$phpversion-fpm --action=reload
|
2020-04-07 17:13:07 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2018-06-04 22:57:21 +02:00
|
|
|
|
2022-02-26 20:24:27 +01:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|