2021-08-05 17:28:35 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source ../settings/scripts/_common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE APP MAIN DIR
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring $app main directory..." --weight=4
|
|
|
|
|
2022-02-14 17:46:52 +01:00
|
|
|
# Frontend
|
2023-03-02 19:15:23 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2022-02-15 15:18:19 +01:00
|
|
|
|
2022-02-14 17:46:52 +01:00
|
|
|
# Backend
|
2022-06-21 15:40:04 +02:00
|
|
|
ynh_restore_file --origin_path="$backend_path"
|
|
|
|
chmod +x "$backend_path/vikunja"
|
|
|
|
chown -R $app:www-data "$backend_path/files"
|
2021-08-08 14:00:19 +02:00
|
|
|
|
2021-08-05 17:28:35 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE POSTGRESQL DATABASE
|
|
|
|
#=================================================
|
2023-03-02 19:24:51 +01:00
|
|
|
ynh_script_progression --message="Restoring the PostgreSQL database..." --weight=6
|
2021-08-05 17:28:35 +02:00
|
|
|
|
2023-10-27 09:20:57 +02:00
|
|
|
ynh_psql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql
|
2021-08-05 17:28:35 +02:00
|
|
|
|
|
|
|
#=================================================
|
2023-10-27 09:20:57 +02:00
|
|
|
# RESTORE SYSTEM CONFIGURATIONS
|
2021-08-05 17:28:35 +02:00
|
|
|
#=================================================
|
2023-10-27 09:20:57 +02:00
|
|
|
# RESTORE THE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring system configurations related to $app..." --weight=1
|
2021-08-05 17:28:35 +02:00
|
|
|
|
2023-10-27 09:12:57 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
2021-08-05 17:28:35 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
|
|
|
|
systemctl enable $app.service --quiet
|
|
|
|
|
|
|
|
yunohost service add $app --description="Self-hosted To-Do list application" --log="/var/log/$app/$app.log"
|
|
|
|
|
|
|
|
#=================================================
|
2023-10-27 09:20:57 +02:00
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX AND PHP-FPM OR THE APP SERVICE
|
2021-08-05 17:28:35 +02:00
|
|
|
#=================================================
|
2023-10-27 09:20:57 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server and $app's service..." --weight=1
|
2021-08-05 17:28:35 +02:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=$app --action=start --log_path=systemd --line_match="server started on"
|
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|