1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/tooljet_ynh.git synced 2024-10-01 13:34:55 +02:00
tooljet_ynh/scripts/restore

89 lines
3.2 KiB
Text
Raw Permalink Normal View History

2022-02-10 01:09:31 +01: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-02-27 20:19:24 +01:00
ynh_script_progression --message="Restoring the NGINX web server configuration..." --weight=1
2022-02-10 01:09:31 +01:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2022-02-27 20:19:24 +01:00
ynh_script_progression --message="Restoring the app main directory..." --weight=1
2022-02-10 01:09:31 +01:00
2023-08-12 19:35:24 +02:00
ynh_restore_file --origin_path="$install_dir"
2022-02-10 01:09:31 +01:00
2023-08-12 19:35:24 +02:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
2023-09-16 11:08:56 +02:00
chown -R $app:$app "$install_dir"
chown $app:www-data -R "$install_dir/frontend/build"
chown $app:www-data "$install_dir/frontend/build"
chown $app:www-data "$install_dir/frontend"
chown $app:www-data "$install_dir"
2022-02-10 01:09:31 +01:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2022-02-27 20:19:24 +01:00
ynh_script_progression --message="Reinstalling dependencies..." --weight=1
2022-02-10 01:09:31 +01:00
2022-02-10 00:47:20 +01:00
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
2022-02-10 01:09:31 +01:00
#=================================================
2022-02-10 00:47:20 +01:00
# RESTORE THE POSTGRESQL DATABASE
2022-02-10 01:09:31 +01:00
#=================================================
2022-02-27 20:19:24 +01:00
ynh_script_progression --message="Restoring the PostgreSQL database..." --weight=1
2022-02-10 01:09:31 +01:00
2022-02-10 00:47:20 +01:00
ynh_psql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql
2022-02-10 01:09:31 +01:00
#=================================================
# RESTORE SYSTEMD
#=================================================
2022-02-27 20:19:24 +01:00
ynh_script_progression --message="Restoring the systemd configuration..." --weight=1
2022-02-10 01:09:31 +01:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
systemctl enable $app.service --quiet
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2022-02-27 20:19:24 +01:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2022-02-10 01:09:31 +01:00
2022-02-10 00:47:20 +01:00
yunohost service add $app
2022-02-10 01:09:31 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2022-02-27 20:19:24 +01:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2022-02-10 01:09:31 +01:00
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
#=================================================
# GENERIC FINALIZATION
#=================================================
2022-02-10 00:47:20 +01:00
# RELOAD NGINX
2022-02-10 01:09:31 +01:00
#=================================================
2022-02-27 20:19:24 +01:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2022-02-10 01:09:31 +01:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2022-02-27 20:19:24 +01:00
ynh_script_progression --message="Restoration completed for $app" --last