2017-08-17 15:17:45 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-03-11 14:15:23 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
2017-08-17 15:17:45 +02:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2021-04-06 15:54:50 +02:00
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
|
|
|
source ../settings/scripts/_common.sh
|
2017-08-17 15:17:45 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2018-03-11 14:15:23 +01:00
|
|
|
#=================================================
|
|
|
|
# STANDARD RESTORATION STEPS
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2022-01-27 01:16:53 +01:00
|
|
|
ynh_script_progression --message="Restoring the NGINX web server configuration..."
|
2018-03-11 14:15:23 +01:00
|
|
|
|
2021-04-06 15:54:50 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2017-08-17 15:17:45 +02:00
|
|
|
|
|
|
|
#=================================================
|
2018-03-11 14:15:23 +01:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2017-08-17 15:17:45 +02:00
|
|
|
#=================================================
|
2021-08-09 16:29:31 +02:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=1
|
2018-03-11 14:15:23 +01:00
|
|
|
|
2023-03-16 22:28:23 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2018-03-11 14:15:23 +01:00
|
|
|
|
2023-03-16 22:28:23 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-07-02 08:11:53 +02:00
|
|
|
|
2017-08-17 15:17:45 +02:00
|
|
|
#=================================================
|
2022-01-27 01:16:53 +01:00
|
|
|
# SPECIFIC RESTORATION
|
2017-08-17 15:17:45 +02:00
|
|
|
#=================================================
|
2022-01-27 01:16:53 +01:00
|
|
|
# REINSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2023-03-16 22:34:12 +01:00
|
|
|
ynh_script_progression --message="Reinstalling dependencies..."
|
2021-08-31 16:08:23 +02:00
|
|
|
|
|
|
|
# Install Nodejs
|
|
|
|
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
|
2017-08-17 15:17:45 +02:00
|
|
|
|
2021-08-31 21:26:01 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE POSTGRESQL DATABASE
|
|
|
|
#=================================================
|
2023-03-16 22:34:12 +01:00
|
|
|
ynh_script_progression --message="Restoring the PostgreSQL database..." --weight=6
|
2021-08-31 21:26:01 +02:00
|
|
|
|
|
|
|
ynh_psql_execute_file_as_root --file="./db.sql" --database=$db_name
|
|
|
|
|
2021-08-31 19:28:38 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE SYSTEMD
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the systemd configuration..." --weight=1
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
|
|
|
|
systemctl enable $app.service --quiet
|
|
|
|
|
2017-08-17 15:17:45 +02:00
|
|
|
#=================================================
|
2022-01-27 01:16:53 +01:00
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
2017-08-17 15:17:45 +02:00
|
|
|
#=================================================
|
2021-08-31 16:08:23 +02:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
2018-03-11 14:15:23 +01:00
|
|
|
|
2021-09-01 18:36:40 +02:00
|
|
|
yunohost service add $app --description="Forum software" --log="/var/log/$app/$app.log"
|
2017-08-17 15:17:45 +02:00
|
|
|
|
|
|
|
#=================================================
|
2021-08-31 16:08:23 +02:00
|
|
|
# START SYSTEMD SERVICE
|
2017-08-17 15:17:45 +02:00
|
|
|
#=================================================
|
2021-08-31 16:08:23 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
2018-03-11 14:15:23 +01:00
|
|
|
|
2021-08-31 16:08:23 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd"
|
2018-03-11 14:15:23 +01:00
|
|
|
|
|
|
|
#=================================================
|
2021-04-06 15:54:50 +02:00
|
|
|
# GENERIC FINALIZATION
|
2018-03-11 14:15:23 +01:00
|
|
|
#=================================================
|
2021-04-06 15:54:50 +02:00
|
|
|
# RELOAD NGINX AND PHP-FPM
|
|
|
|
#=================================================
|
2021-08-09 16:29:31 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
2018-03-11 14:15:23 +01:00
|
|
|
|
2021-04-06 15:54:50 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2018-03-11 14:15:23 +01:00
|
|
|
|
2017-08-17 15:17:45 +02:00
|
|
|
#=================================================
|
2021-04-06 15:54:50 +02:00
|
|
|
# END OF SCRIPT
|
2017-08-17 15:17:45 +02:00
|
|
|
#=================================================
|
|
|
|
|
2021-08-09 16:29:31 +02:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|