2016-01-10 20:10:16 +01:00
|
|
|
#!/bin/bash
|
2016-05-10 14:21:26 +02:00
|
|
|
|
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
|
2019-04-09 22:19:55 +02:00
|
|
|
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
|
|
|
|
2023-03-11 13:53:38 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2021-05-18 09:26:51 +02:00
|
|
|
|
2023-03-11 13:53:38 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2017-08-27 14:42:28 +02:00
|
|
|
|
2022-06-06 19:06:50 +02:00
|
|
|
#=================================================
|
2023-03-11 13:53:38 +01:00
|
|
|
# RESTORE THE MYSQL DATABASE
|
2022-06-06 19:06:50 +02:00
|
|
|
#=================================================
|
2023-03-11 13:53:38 +01:00
|
|
|
ynh_script_progression --message="Restoring the MySQL database..." --weight=5
|
2022-06-06 19:06:50 +02:00
|
|
|
|
2023-03-11 13:53:38 +01:00
|
|
|
ynh_mysql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql
|
2022-06-06 19:06:50 +02:00
|
|
|
|
2023-03-11 13:53:38 +01:00
|
|
|
#=================================================
|
|
|
|
# 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
|
|
|
#=================================================
|
2023-03-11 13:53:38 +01: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
|
|
|
|
2022-07-06 06:41:20 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2021-12-28 09:58:39 +01:00
|
|
|
|
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
|
|
|
|
#=================================================
|
2023-03-11 13:53:38 +01:00
|
|
|
# RELOAD NGINX AND PHP-FPM OR THE APP SERVICE
|
2017-08-27 14:42:28 +02:00
|
|
|
#=================================================
|
2023-03-11 13:53:38 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server and $app's service..." --weight=1
|
2019-05-01 20:35:48 +02:00
|
|
|
|
2023-03-11 13:53:38 +01: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
|
2023-03-11 13:53:38 +01:00
|
|
|
|
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
|