2021-05-21 14:13:08 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source ../settings/scripts/_common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE APP MAIN DIR
|
|
|
|
#=================================================
|
2024-08-19 09:15:13 +02:00
|
|
|
ynh_script_progression "Restoring $app main directory..."
|
2021-05-21 14:13:08 +02:00
|
|
|
|
2024-08-19 09:15:13 +02:00
|
|
|
ynh_restore "$install_dir"
|
2021-05-21 14:13:08 +02:00
|
|
|
|
2023-04-07 13:22:55 +02:00
|
|
|
chmod +x "$install_dir/miniflux"
|
2024-08-19 09:17:25 +02:00
|
|
|
|
2021-05-21 14:13:08 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE POSTGRESQL DATABASE
|
|
|
|
#=================================================
|
2024-08-19 09:15:13 +02:00
|
|
|
ynh_script_progression "Restoring the PostgreSQL database..."
|
2021-05-21 14:13:08 +02:00
|
|
|
|
2024-08-19 09:17:25 +02:00
|
|
|
ynh_psql_db_shell < "./db.sql"
|
2021-05-21 14:13:08 +02:00
|
|
|
|
|
|
|
#=================================================
|
2023-08-21 09:17:20 +02:00
|
|
|
# RESTORE SYSTEM CONFIGURATIONS
|
2021-05-21 14:13:08 +02:00
|
|
|
#=================================================
|
2023-08-21 09:17:20 +02:00
|
|
|
# RESTORE THE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2024-08-19 09:15:13 +02:00
|
|
|
ynh_script_progression "Restoring system configurations related to $app..."
|
2023-08-21 09:17:20 +02:00
|
|
|
|
2024-08-19 09:15:13 +02:00
|
|
|
ynh_restore "/etc/nginx/conf.d/$domain.d/$app.conf"
|
2021-05-21 14:13:08 +02:00
|
|
|
|
2024-08-19 09:15:13 +02:00
|
|
|
ynh_restore "/etc/systemd/system/$app.service"
|
2021-05-21 14:13:08 +02:00
|
|
|
systemctl enable $app.service --quiet
|
|
|
|
|
2024-08-19 09:15:13 +02:00
|
|
|
ynh_restore "/etc/logrotate.d/$app"
|
2021-11-16 20:34:36 +01:00
|
|
|
|
2023-12-09 22:13:31 +01:00
|
|
|
yunohost service add $app --description="Minimalist feed reader" --log="/var/log/$app/$app.log"
|
|
|
|
|
2021-05-21 14:13:08 +02:00
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2024-08-19 09:15:13 +02:00
|
|
|
ynh_script_progression "Starting $app's systemd service..."
|
2021-05-21 14:13:08 +02:00
|
|
|
|
2024-08-19 09:15:13 +02:00
|
|
|
ynh_systemctl --service=$app --action=start --log_path=systemd
|
2021-05-21 14:13:08 +02:00
|
|
|
|
2024-08-19 09:15:13 +02:00
|
|
|
ynh_systemctl --service=nginx --action=reload
|
2021-05-21 14:13:08 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-08-19 09:15:13 +02:00
|
|
|
ynh_script_progression "Restoration completed for $app"
|