1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/fittrackee_ynh.git synced 2024-09-03 18:36:16 +02:00
fittrackee_ynh/scripts/restore

95 lines
3.6 KiB
Text
Raw Normal View History

2022-04-29 12:18:34 +02:00
#!/bin/bash
#=================================================
# 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
2023-02-20 00:08:32 +01:00
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
2022-04-29 12:18:34 +02:00
#=================================================
# STANDARD RESTORATION STEPS
2023-03-06 13:32:00 +01:00
#=================================================
# RESTORE LOGROTATE
#=================================================
ynh_script_progression --message="Configuring logrotate to manage application logfiles" --weight=1
# Use logrotate to manage application logfile(s)
ynh_use_logrotate --specific_user=$app
touch /var/log/$app/$app.log
2023-03-08 21:40:21 +01:00
touch /var/log/$app/${app}_workers.log
2023-03-08 22:57:32 +01:00
touch /var/log/$app/gunicorn.log
2023-03-06 13:32:00 +01:00
chown -R $app:www-data /var/log/$app/
2022-04-29 12:18:34 +02:00
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
2023-03-06 13:32:00 +01:00
2022-12-21 17:01:09 +01:00
ynh_script_progression --message="Restoring the NGINX web server configuration..." --weight=1
2022-04-29 12:18:34 +02:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2023-02-20 00:08:32 +01:00
#=================================================
# RESTORE THE POSTGRESQL DATABASE
#=================================================
ynh_script_progression --message="Restoring the PostgreSQL database..." --weight=1
ynh_psql_execute_file_as_root --file="./db.sql" --database=$db_name
2022-04-29 12:18:34 +02:00
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2022-12-21 17:01:09 +01:00
ynh_script_progression --message="Restoring the app main directory..." --weight=1
2022-04-29 12:18:34 +02:00
2023-02-17 18:52:53 +01:00
ynh_restore_file --origin_path="$install_dir"
2023-03-06 13:32:00 +01:00
chmod 600 $install_dir/.env
2022-04-29 12:18:34 +02:00
2023-03-02 20:37:23 +01:00
chown -R $app: "$install_dir"
2022-04-29 12:18:34 +02:00
#=================================================
# RESTORE SYSTEMD
#=================================================
2022-12-21 17:01:09 +01:00
ynh_script_progression --message="Restoring the systemd configuration..." --weight=1
2022-04-29 12:18:34 +02:00
2023-03-02 20:37:23 +01:00
ynh_restore_file --origin_path="/etc/systemd/system/${app}.service"
ynh_restore_file --origin_path="/etc/systemd/system/${app}_workers.service"
2023-03-02 20:37:23 +01:00
systemctl enable "${app}.service" --quiet
systemctl enable "${app}_workers.service" --quiet
2022-04-29 12:18:34 +02:00
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2022-12-21 17:01:09 +01:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2022-04-29 12:18:34 +02:00
2023-03-09 13:38:15 +01:00
yunohost service add "${app}" --description="Fittrackee main service" --log="/var/log/$app/$app.log" --log="/var/log/$app/gunicorn.log"
2023-03-08 21:40:21 +01:00
yunohost service add "${app}_workers" --description="Fittrackee task queue service" --log="var/log/$app/${app}_workers.log"
2022-04-29 12:18:34 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2022-12-21 17:01:09 +01:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2022-04-29 12:18:34 +02:00
2023-03-09 13:38:15 +01:00
ynh_systemd_action --service_name="${app}" --action="start"
ynh_systemd_action --service_name="${app}_workers" --action="start"
2022-04-29 12:18:34 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
2022-12-21 17:01:09 +01:00
# RELOAD NGINX
2022-04-29 12:18:34 +02:00
#=================================================
2022-12-21 17:01:09 +01:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2022-04-29 12:18:34 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2022-12-21 17:01:09 +01:00
ynh_script_progression --message="Restoration completed for $app" --last