django-fritzconnection_ynh/scripts/restore

71 lines
2.6 KiB
Text
Raw Normal View History

2024-05-28 23:45:09 +02:00
j#!/bin/bash
2022-04-02 17:44:57 +02:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2024-03-28 22:18:52 +01:00
ynh_script_progression --message="Restoring the app main directory..."
2022-04-02 17:44:57 +02:00
2024-03-28 22:18:52 +01:00
ynh_restore_file --origin_path="$install_dir"
2022-04-02 17:44:57 +02:00
2024-03-28 22:18:52 +01:00
chmod -R o-rwx "$install_dir"
chown -R "$app:www-data" "$install_dir"
2022-04-02 17:44:57 +02:00
#=================================================
2024-03-28 22:18:52 +01:00
# RESTORE THE POSTGRESQL DATABASE
2022-04-02 17:44:57 +02:00
#=================================================
2024-03-28 22:18:52 +01:00
ynh_script_progression --message="Restoring the PostgreSQL database..." --weight=1
2022-04-02 17:44:57 +02:00
2024-03-28 22:18:52 +01:00
ynh_psql_connect_as --user="$db_user" --password="$db_pwd" --database="$db_name" < ./db.sql
2022-04-02 17:44:57 +02:00
#=================================================
2022-08-16 09:47:54 +02:00
# PYTHON VIRTUALENV
2024-03-28 22:18:52 +01:00
# Maybe the backup contains another Python version
2022-04-02 17:44:57 +02:00
#=================================================
2024-03-28 22:18:52 +01:00
ynh_script_progression --message="Updating Python virtualenv and rebuilding $app..." --weight=5
2022-04-02 17:44:57 +02:00
# Always recreate everything fresh with current python version
2024-03-28 22:18:52 +01:00
ynh_secure_remove "$install_dir/venv"
_venv_install
2024-05-28 23:45:09 +02:00
chown -R "$app:www-data" "$install_dir"
2024-03-28 22:18:52 +01:00
_build_app
2022-04-02 17:44:57 +02:00
#=================================================
2024-03-28 22:18:52 +01:00
# RESTORE SYSTEM CONFIGURATIONS
2022-04-02 17:44:57 +02:00
#=================================================
2024-03-28 22:18:52 +01:00
ynh_script_progression --message="Restoring system configurations related to $app..." --weight=1
2022-04-02 17:44:57 +02:00
2024-03-28 22:18:52 +01:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2022-04-02 17:44:57 +02:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
2024-03-28 22:18:52 +01:00
systemctl enable "$app.service" --quiet
yunohost service add "$app" --description="Django-fritzconnection server" --log="/var/log/$app/$app.log"
2022-04-02 17:44:57 +02:00
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
#=================================================
2024-03-28 22:18:52 +01:00
# RESTORE VARIOUS FILES
2022-04-02 17:44:57 +02:00
#=================================================
2024-03-28 22:18:52 +01:00
ynh_restore_file --origin_path="/var/log/$app/"
2022-04-02 17:44:57 +02:00
#=================================================
2024-03-28 22:18:52 +01:00
# RELOAD NGINX AND PHP-FPM OR THE APP SERVICE
2022-04-02 17:44:57 +02:00
#=================================================
2024-03-28 22:18:52 +01:00
ynh_script_progression --message="Reloading NGINX web server and $app's service..." --weight=1
2022-04-02 17:44:57 +02:00
2024-03-28 22:18:52 +01:00
ynh_systemd_action --service_name="$app" --action="start" --log_path="/var/log/$app/$app.log"
2022-04-02 17:44:57 +02:00
2024-03-28 22:18:52 +01:00
ynh_systemd_action --service_name=nginx --action=reload
2022-04-02 17:44:57 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Restoration completed for $app" --last