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

84 lines
3 KiB
Text
Raw Normal View History

2016-10-05 19:44:08 +02:00
#!/bin/bash
2018-02-15 21:58:56 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2016-10-05 19:44:08 +02:00
2021-05-15 18:39:31 +02:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
2020-06-12 18:21:19 +02:00
source ../settings/scripts/experimental_helpers/ynh_add_swap
2018-02-15 21:58:56 +01:00
source /usr/share/yunohost/helpers
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
2021-05-15 18:39:31 +02:00
# RESTORE THE APP MAIN DIR
2018-02-15 21:58:56 +01:00
#=================================================
2021-05-15 18:39:31 +02:00
ynh_script_progression --message="Restoring the app main directory..." --weight=1
2018-02-15 21:58:56 +01:00
2023-02-19 18:59:53 +01:00
ynh_restore_file --origin_path="$install_dir"
2021-05-15 18:39:31 +02:00
2023-02-19 18:59:53 +01:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2018-02-15 21:58:56 +01:00
2019-08-24 12:54:18 +02:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
# RESTORE THE PHP-FPM CONFIGURATION
#=================================================
ynh_script_progression --message="Restoring the PHP-FPM configuration..."
ynh_restore_file --origin_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
# Recreate a dedicated php-fpm config
ynh_add_fpm_config --usage=low --footprint=low
2022-09-13 18:08:13 +02:00
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Restoring the NGINX configuration..."
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2019-08-24 12:54:18 +02:00
#=================================================
# RESTORE THE MYSQL DATABASE
#=================================================
2020-06-12 01:55:21 +02:00
ynh_script_progression --message="Restoring the MySQL database..."
2019-08-24 12:54:18 +02:00
2020-06-12 01:55:21 +02:00
ynh_mysql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql
2018-02-15 21:58:56 +01:00
#=================================================
2021-05-15 18:39:31 +02:00
# ADD SWAP
2018-02-15 21:58:56 +01:00
#=================================================
2021-05-15 18:39:31 +02:00
ynh_script_progression --message="Adding swap..."
2018-02-15 21:58:56 +01:00
2022-08-05 11:08:38 +02:00
if [ ${PACKAGE_CHECK_EXEC:-0} -eq 0 ]; then
2022-08-05 10:50:45 +02:00
ynh_add_swap --size=$swap_needed
fi
2018-02-15 21:58:56 +01:00
2020-06-12 16:47:52 +02:00
#=================================================
2021-05-15 18:39:31 +02:00
# RESTORE THE LOGROTATE CONFIGURATION
2020-06-12 16:47:52 +02:00
#=================================================
2021-05-15 18:39:31 +02:00
ynh_script_progression --message="Restoring the logrotate configuration..."
2020-06-12 16:47:52 +02:00
2021-05-15 18:39:31 +02:00
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
2020-06-12 16:47:52 +02:00
2018-02-15 21:58:56 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX AND PHP-FPM
#=================================================
2021-05-15 18:39:31 +02:00
ynh_script_progression --message="Reloading NGINX web server and PHP-FPM..." --weight=1
2019-08-24 12:54:18 +02:00
2020-06-12 01:55:21 +02:00
ynh_systemd_action --service_name=php$phpversion-fpm --action=reload
2019-08-24 12:54:18 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2016-10-05 19:44:08 +02:00
2020-06-12 01:55:21 +02:00
ynh_script_progression --message="Restoration completed for $app" --last