2017-08-17 15:17:45 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
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
|
|
|
# RESTORE THE APP MAIN DIR
|
2017-08-17 15:17:45 +02:00
|
|
|
#=================================================
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_script_progression "Restoring the app main directory..."
|
2018-03-11 14:15:23 +01:00
|
|
|
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_restore "$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
|
|
|
|
#=================================================
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_script_progression "Reinstalling dependencies..."
|
2021-08-31 16:08:23 +02:00
|
|
|
|
|
|
|
# Install Nodejs
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_nodejs_install
|
2017-08-17 15:17:45 +02:00
|
|
|
|
2021-08-31 21:26:01 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE POSTGRESQL DATABASE
|
|
|
|
#=================================================
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_script_progression "Restoring the PostgreSQL database..."
|
2021-08-31 21:26:01 +02:00
|
|
|
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_psql_db_shell < "./db.sql""
|
2021-08-31 21:26:01 +02:00
|
|
|
|
2021-08-31 19:28:38 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE SYSTEMD
|
|
|
|
#=================================================
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_script_progression "Restoring $app's systemd service..."
|
2021-08-31 19:28:38 +02:00
|
|
|
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_restore "/etc/nginx/conf.d/$domain.d/$app.conf"
|
2024-04-14 18:18:35 +02:00
|
|
|
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_restore "/etc/systemd/system/$app.service"
|
2021-08-31 19:28:38 +02:00
|
|
|
systemctl enable $app.service --quiet
|
|
|
|
|
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
|
|
|
#=================================================
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_script_progression "Starting $app's systemd service..."
|
2018-03-11 14:15:23 +01:00
|
|
|
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_systemctl --service=$app --action="start" --log_path="systemd"
|
2018-03-11 14:15:23 +01:00
|
|
|
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_systemctl --service=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
|
|
|
#=================================================
|
|
|
|
|
2024-06-24 14:16:00 +02:00
|
|
|
ynh_script_progression "Restoration completed for $app"
|