1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ttrss_ynh.git synced 2024-10-01 13:34:46 +02:00
ttrss_ynh/scripts/restore

63 lines
2.3 KiB
Text
Raw Normal View History

2016-01-10 20:10:16 +01:00
#!/bin/bash
2019-05-01 20:35:48 +02:00
#=================================================
# GENERIC START
2017-08-27 14:42:28 +02:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2016-01-10 20:10:16 +01:00
2021-05-18 09:26:51 +02:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
2017-08-27 14:42:28 +02:00
source /usr/share/yunohost/helpers
2016-01-10 20:10:16 +01:00
2017-08-27 14:42:28 +02:00
#=================================================
2021-05-18 09:26:51 +02:00
# RESTORE THE APP MAIN DIR
2017-08-27 14:42:28 +02:00
#=================================================
2021-05-18 09:26:51 +02:00
ynh_script_progression --message="Restoring the app main directory..." --weight=2
2017-08-27 14:42:28 +02:00
ynh_restore_file --origin_path="$install_dir"
2021-05-18 09:26:51 +02:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2017-08-27 14:42:28 +02:00
#=================================================
# RESTORE THE MYSQL DATABASE
#=================================================
ynh_script_progression --message="Restoring the MySQL database..." --weight=5
ynh_mysql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql
#=================================================
# RESTORE SYSTEM CONFIGURATIONS
2017-08-27 14:42:28 +02:00
#=================================================
2020-08-14 14:42:08 +02:00
# RESTORE THE PHP-FPM CONFIGURATION
2017-08-27 14:42:28 +02:00
#=================================================
ynh_script_progression --message="Restoring system configurations related to $app..." --weight=1
2020-08-14 14:42:08 +02:00
2020-08-14 15:07:58 +02:00
ynh_restore_file --origin_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
2017-08-27 14:42:28 +02:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2021-05-18 09:26:51 +02:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
systemctl enable $app.service --quiet
2020-12-04 14:11:53 +01:00
yunohost service add $app --description="News feed reader and aggregator" --log="/var/log/$app/$app.log"
2020-11-20 12:28:18 +01:00
2017-08-27 14:42:28 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX AND PHP-FPM OR THE APP SERVICE
2017-08-27 14:42:28 +02:00
#=================================================
ynh_script_progression --message="Reloading NGINX web server and $app's service..." --weight=1
2019-05-01 20:35:48 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd"
2021-05-18 09:26:51 +02:00
ynh_systemd_action --service_name=php$phpversion-fpm --action=reload
2019-05-01 20:35:48 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2016-01-10 20:10:16 +01:00
2019-05-01 20:35:48 +02:00
ynh_script_progression --message="Restoration completed for $app" --last