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

59 lines
2.1 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"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2019-05-01 20:35:48 +02:00
#=================================================
# RESTORE THE POSTGRESQL DATABASE
2019-05-01 20:35:48 +02:00
#=================================================
ynh_script_progression --message="Restoring the PostgreSQL database..." --weight=6
2019-05-01 20:35:48 +02:00
ynh_psql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql
2019-05-01 20:35:48 +02:00
2023-03-11 12:46:20 +01:00
#=================================================
# RESTORE THE PHP-FPM CONFIGURATION
2021-05-18 09:26:51 +02:00
#=================================================
ynh_script_progression --message="Restoring the PHP-FPM configuration..." --weight=50
2023-03-11 12:46:20 +01:00
ynh_restore_file --origin_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
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
#=================================================
# START SYSTEMD SERVICE
2017-08-27 14:42:28 +02:00
#=================================================
ynh_script_progression --message="Starting a systemd service..."
2019-05-01 20:35:48 +02:00
2023-03-11 12:46:20 +01:00
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd"
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