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
|
|
|
|
#=================================================
|
|
|
|
# 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"
|
|
|
|
|
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"
|
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"
|
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"
|
2022-12-31 18:14:15 +01:00
|
|
|
|
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-02 20:37:23 +01:00
|
|
|
yunohost service add "${app}"
|
|
|
|
yunohost service add "${app}_workers"
|
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-02 20:37:23 +01:00
|
|
|
ynh_systemd_action --service_name="${app}" --action="start" --log_path="/var/log/$app/$app.log" --line_match="Booting worker with pid"
|
|
|
|
ynh_systemd_action --service_name="${app}_workers" --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
|