2023-09-23 16:49:01 +02:00
|
|
|
#!/bin/bash
|
2023-10-06 13:52:35 +02:00
|
|
|
|
2023-09-23 16:49:01 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
|
|
|
source ../settings/scripts/_common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE APP MAIN DIR
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=1
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
|
|
|
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2023-10-06 14:25:09 +02:00
|
|
|
chown $app:$app "/var/log/$app"
|
2023-09-23 16:49:01 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE DATA DIRECTORY
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the data directory..." --weight=1
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="$data_dir" --not_mandatory
|
|
|
|
|
|
|
|
# (Same as for install dir)
|
|
|
|
chown -R $app:www-data "$data_dir"
|
2023-10-06 13:52:35 +02:00
|
|
|
|
2023-09-23 16:49:01 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE MYSQL DATABASE
|
|
|
|
#=================================================
|
2023-10-06 13:52:35 +02:00
|
|
|
ynh_script_progression --message="Restoring the PostgreSQL database..." --weight=1
|
2023-09-23 16:49:01 +02:00
|
|
|
|
|
|
|
ynh_psql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql
|
2023-10-06 13:52:35 +02:00
|
|
|
|
|
|
|
#=================================================
|
2023-09-23 16:49:01 +02:00
|
|
|
# RESTORE SYSTEM CONFIGURATIONS
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring system configurations related to $app..." --weight=1
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
|
|
|
|
systemctl enable $app.service --quiet
|
|
|
|
|
2023-10-06 13:52:35 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
|
2023-09-23 16:49:01 +02:00
|
|
|
|
2023-10-06 14:25:09 +02:00
|
|
|
yunohost service add $app --description="Federated shared agenda for local communities" --log="/var/log/$app/$app.log"
|
|
|
|
|
2023-09-23 16:49:01 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX AND PHP-FPM OR THE APP SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Reloading NGINX web server and $app's service..." --weight=1
|
|
|
|
|
|
|
|
# Typically you only have either $app or php-fpm but not both at the same time...
|
2023-10-06 13:52:35 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd"
|
2023-09-23 16:49:01 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2023-10-06 14:25:09 +02:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|