2014-11-23 20:22:15 +01:00
|
|
|
#!/bin/bash
|
2015-10-23 16:24:30 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2017-10-19 12:13:47 +02:00
|
|
|
|
2022-10-19 00:46:33 +02:00
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2019-02-15 19:49:22 +01:00
|
|
|
source ../settings/scripts/_common.sh
|
2017-10-19 12:13:47 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
2021-06-07 23:50:22 +02:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
2022-06-06 16:13:41 +02:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=5
|
2021-06-07 23:50:22 +02:00
|
|
|
|
2023-03-06 13:24:53 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2017-10-21 22:52:21 +02:00
|
|
|
|
2023-03-06 13:24:53 +01:00
|
|
|
mkdir -p $install_dir/sessions/
|
2022-10-19 00:46:33 +02:00
|
|
|
|
2023-03-06 13:24:53 +01:00
|
|
|
chown -R $app $install_dir/{data,plugins,sessions}
|
|
|
|
chmod -R 700 $install_dir/sessions
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2022-10-19 00:46:33 +02:00
|
|
|
|
2023-10-24 09:38:45 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE DATA DIRECTORY
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the data directory..." --weight=1
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="$data_dir" --not_mandatory
|
|
|
|
|
|
|
|
# (Same as for install dir)
|
|
|
|
chown -R $app:www-data "$data_dir"
|
|
|
|
|
2022-10-19 00:46:33 +02:00
|
|
|
#=================================================
|
2023-10-23 12:16:19 +02:00
|
|
|
# RESTORE THE MYSQL DATABASE
|
2022-10-19 00:46:33 +02:00
|
|
|
#=================================================
|
2023-10-23 12:16:19 +02:00
|
|
|
ynh_script_progression --message="Restoring the MySQL database..." --weight=3
|
2022-10-19 00:46:33 +02:00
|
|
|
|
2023-10-23 12:16:19 +02:00
|
|
|
ynh_mysql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql
|
2022-10-19 00:46:33 +02:00
|
|
|
|
2023-10-23 12:16:19 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE SYSTEM CONFIGURATIONS
|
2017-10-21 23:15:17 +02:00
|
|
|
#=================================================
|
2019-02-15 19:49:22 +01:00
|
|
|
# RESTORE THE PHP-FPM CONFIGURATION
|
2017-10-21 23:15:17 +02:00
|
|
|
#=================================================
|
2023-10-23 12:16:19 +02:00
|
|
|
ynh_script_progression --message="Restoring system configurations related to $app..." --weight=1
|
2020-06-07 19:20:26 +02:00
|
|
|
|
2023-10-23 12:16:19 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
|
2022-06-06 15:19:52 +02:00
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
2023-10-24 10:16:29 +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
|
2023-01-12 17:26:58 +01:00
|
|
|
|
2020-10-30 15:08:59 +01:00
|
|
|
ynh_restore_file --origin_path="/etc/cron.d/$app"
|
2022-06-06 12:36:32 +02:00
|
|
|
chown root: "/etc/cron.d/$app"
|
2020-12-28 08:15:16 +01:00
|
|
|
chmod 644 "/etc/cron.d/$app"
|
2020-10-30 15:08:59 +01:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX AND PHP-FPM
|
|
|
|
#=================================================
|
2022-10-19 00:46:33 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server and PHP-FPM..." --weight=2
|
2017-10-21 22:52:21 +02:00
|
|
|
|
2020-10-30 15:08:59 +01:00
|
|
|
ynh_systemd_action --service_name=php$phpversion-fpm --action=reload
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2019-02-15 19:49:22 +01:00
|
|
|
|
2019-02-17 20:55:37 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2022-05-27 23:17:20 +02:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|