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

79 lines
3.1 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
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
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"
#=================================================
# 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"
2022-04-29 12:18:34 +02:00
2023-02-17 18:52:53 +01:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$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
ynh_restore_file --origin_path="/etc/systemd/system/${app}-beat.service"
ynh_restore_file --origin_path="/etc/systemd/system/${app}-server.service"
ynh_restore_file --origin_path="/etc/systemd/system/${app}-worker.service"
ynh_restore_file --origin_path="/etc/systemd/system/$app.target"
systemctl enable "${app}-beat.service" --quiet
systemctl enable "${app}-server.service" --quiet
systemctl enable "${app}-worker.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
yunohost service add "${app}-beat"
yunohost service add "${app}-server"
yunohost service add "${app}-worker"
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
ynh_systemd_action --service_name="${app}-beat" --action="start" --log_path="systemd" --line_match="Started"
ynh_systemd_action --service_name="${app}-server" --action="start" --log_path="systemd" --line_match="Booting worker with pid"
ynh_systemd_action --service_name="${app}-worker" --action="start" --log_path="systemd" --line_match="ready"
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