2017-02-27 01:33:31 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-06-25 05:57:41 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2017-02-27 01:33:31 +01:00
|
|
|
|
2022-07-22 00:47:28 +02:00
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2019-04-05 12:29:32 +02:00
|
|
|
source ../settings/scripts/_common.sh
|
2018-06-25 05:57:41 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2021-11-22 19:20:21 +01:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE APP MAIN DIR
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the app main directory..."
|
|
|
|
|
2023-03-21 18:14:35 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2021-11-22 19:20:21 +01:00
|
|
|
|
2023-03-21 18:14:35 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chmod -R u+rwX $install_dir/{cache/,data/,pagecache/,tmp/}
|
|
|
|
chown -R $app:www-data "$install_dir"
|
|
|
|
chmod 700 "$install_dir/data/config.json.php"
|
2018-06-25 05:57:41 +02:00
|
|
|
|
|
|
|
#=================================================
|
2022-07-22 00:47:28 +02:00
|
|
|
# RESTORE FAIL2BAN CONFIGURATION
|
2018-06-25 05:57:41 +02:00
|
|
|
#=================================================
|
2022-07-22 00:47:28 +02:00
|
|
|
ynh_script_progression --message="Restoring the Fail2Ban configuration..."
|
2018-06-25 05:57:41 +02:00
|
|
|
|
2022-07-22 00:47:28 +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
|
2018-06-25 05:57:41 +02:00
|
|
|
|
|
|
|
#=================================================
|
2022-07-22 00:47:28 +02:00
|
|
|
# RESTORE THE PHP-FPM CONFIGURATION
|
2018-11-04 14:01:28 +01:00
|
|
|
#=================================================
|
2022-07-22 00:47:28 +02:00
|
|
|
ynh_script_progression --message="Restoring the PHP-FPM configuration..."
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
|
|
|
|
|
2018-11-04 14:01:28 +01:00
|
|
|
#=================================================
|
2022-07-22 00:47:28 +02:00
|
|
|
# RESTORE THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the NGINX web server configuration..."
|
2020-11-01 16:00:22 +01:00
|
|
|
|
2022-07-22 00:47:28 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2018-11-04 14:01:28 +01:00
|
|
|
|
|
|
|
#=================================================
|
2022-07-22 00:47:28 +02:00
|
|
|
# RESTORE THE LOGROTATE CONFIGURATION
|
2018-11-04 14:01:28 +01:00
|
|
|
#=================================================
|
2022-07-22 00:47:28 +02:00
|
|
|
ynh_script_progression --message="Restoring the logrotate configuration..."
|
2020-11-01 16:00:22 +01:00
|
|
|
|
2022-07-22 00:47:28 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
|
2017-02-27 01:33:31 +01:00
|
|
|
|
2018-06-25 05:57:41 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX AND PHP-FPM
|
|
|
|
#=================================================
|
2020-11-24 18:00:33 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server and PHP-FPM..."
|
2019-04-05 12:29:32 +02:00
|
|
|
|
2020-11-01 16:00:22 +01:00
|
|
|
ynh_systemd_action --service_name=php$phpversion-fpm --action=reload
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2017-02-27 01:33:31 +01:00
|
|
|
|
2019-04-05 12:29:32 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-11-01 16:00:22 +01:00
|
|
|
ynh_script_progression --message="Restoration completed for $app"
|