1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kanboard_ynh.git synced 2024-09-03 19:36:17 +02:00
kanboard_ynh/scripts/restore

84 lines
3.1 KiB
Text
Raw Normal View History

#!/bin/bash
2015-10-23 16:24:30 +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
#=================================================
2021-06-07 23:50:22 +02:00
# RESTORE THE APP MAIN DIR
#=================================================
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"
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
#=================================================
# RESTORE FAIL2BAN CONFIGURATION
#=================================================
ynh_script_progression --message="Restoring the Fail2Ban configuration..." --weight=8
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
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
#=================================================
2022-06-06 12:08:05 +02:00
ynh_script_progression --message="Restoring the PHP-FPM configuration..." --weight=5
2020-10-30 15:08:59 +01:00
ynh_restore_file --origin_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
#=================================================
2022-06-06 15:19:52 +02:00
# RESTORE THE NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Restoring the NGINX web server configuration..." --weight=1
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2023-01-12 17:26:58 +01:00
# Recreate a dedicated php-fpm config
ynh_add_fpm_config --usage=$fpm_usage --footprint=$fpm_footprint --phpversion=$phpversion
#=================================================
2019-02-15 19:49:22 +01:00
# RESTORE THE MYSQL DATABASE
#=================================================
2023-03-06 13:29:34 +01:00
ynh_script_progression --message="Restoring the MySQL database..." --weight=3
2022-06-06 12:08:05 +02:00
ynh_mysql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql
2016-02-07 00:56:33 +01:00
2018-11-20 22:43:27 +01:00
#=================================================
2022-10-19 00:46:33 +02:00
# RESTORE VARIOUS FILES
2020-10-30 15:08:59 +01:00
#=================================================
2022-10-19 00:46:33 +02:00
ynh_script_progression --message="Restoring various files..." --weight=2
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"
chmod 644 "/etc/cron.d/$app"
2020-10-30 15:08:59 +01: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
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