2015-08-20 15:06:37 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-01-30 00:43:09 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2015-08-20 15:06:37 +02:00
|
|
|
|
2021-05-15 16:10:33 +02:00
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2019-02-09 23:46:07 +01:00
|
|
|
source ../settings/scripts/_common.sh
|
2020-04-17 14:38:01 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2015-08-20 15:06:37 +02:00
|
|
|
|
2019-01-30 00:43:09 +01:00
|
|
|
#=================================================
|
|
|
|
# STANDARD RESTORATION STEPS
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2021-05-15 16:10:33 +02:00
|
|
|
ynh_script_progression --message="Restoring the NGINX configuration..."
|
2019-01-30 00:43:09 +01:00
|
|
|
|
2020-04-17 14:38:01 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2019-01-30 00:43:09 +01:00
|
|
|
|
|
|
|
#=================================================
|
2021-05-15 16:10:33 +02:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2019-01-30 00:43:09 +01:00
|
|
|
#=================================================
|
2021-05-15 16:10:33 +02:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..."
|
|
|
|
|
2023-08-15 17:52:30 +02:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2019-01-30 00:43:09 +01:00
|
|
|
|
2023-08-15 17:52:30 +02:00
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2019-01-30 00:43:09 +01:00
|
|
|
|
2021-10-29 15:29:25 +02:00
|
|
|
# https://dotclear.org/documentation/2.0/admin/install
|
2023-08-15 17:52:30 +02:00
|
|
|
mkdir -p "$install_dir/"{cache,public}
|
|
|
|
setfacl -m d:u:www-data:rwx "$install_dir/"{cache,public}
|
2021-10-29 15:29:25 +02:00
|
|
|
|
2019-01-30 00:43:09 +01:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2021-05-15 16:10:33 +02:00
|
|
|
ynh_script_progression --message="Restoring the PHP-FPM configuration..."
|
2019-01-30 00:43:09 +01:00
|
|
|
|
2021-05-15 16:10:33 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
|
2020-04-17 14:38:01 +02:00
|
|
|
|
2020-04-18 01:25:53 +02:00
|
|
|
#=================================================
|
2021-05-15 16:10:33 +02:00
|
|
|
# RESTORE FAIL2BAN CONFIGURATION
|
2020-04-18 01:25:53 +02:00
|
|
|
#=================================================
|
2021-05-15 16:10:33 +02:00
|
|
|
ynh_script_progression --message="Restoring the Fail2Ban configuration..."
|
2020-04-18 01:25:53 +02:00
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/fail2ban/jail.d/$app.conf"
|
|
|
|
ynh_restore_file --origin_path="/etc/fail2ban/filter.d/$app.conf"
|
|
|
|
ynh_systemd_action --action=restart --service_name=fail2ban
|
|
|
|
|
2020-04-17 14:38:01 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC RESTORATION
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE MYSQL DATABASE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the MySQL database..." --weight=3
|
|
|
|
|
|
|
|
ynh_mysql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql
|
2019-01-30 00:43:09 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
2020-04-17 15:27:58 +02:00
|
|
|
# RELOAD NGINX AND PHP-FPM
|
2020-04-17 14:38:01 +02:00
|
|
|
#=================================================
|
2021-05-15 16:10:33 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server and PHP-FPM..."
|
2020-04-17 14:38:01 +02:00
|
|
|
|
2021-05-15 16:10:33 +02:00
|
|
|
ynh_systemd_action --service_name=php$phpversion-fpm --action=reload
|
2020-04-17 14:38:01 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
2019-01-30 00:43:09 +01:00
|
|
|
#=================================================
|
|
|
|
|
2020-04-17 14:38:01 +02:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|