1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/reiverr_ynh.git synced 2024-09-03 20:16:14 +02:00
reiverr_ynh/scripts/restore

50 lines
2.1 KiB
Text
Raw Normal View History

2023-10-08 18:31:27 +02:00
#!/bin/bash
# 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
2023-10-31 14:53:00 +01:00
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
ynh_script_progression "Restoring the app main directory..."
2023-10-31 14:53:00 +01:00
ynh_restore "$install_dir"
2023-10-31 14:53:00 +01:00
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chmod 750 "$install_dir"
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chmod -R o-rwx "$install_dir"
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chown -R $app:$app "$install_dir"
2023-10-08 18:31:27 +02:00
#=================================================
# RESTORE SYSTEM CONFIGURATIONS
#=================================================
ynh_script_progression "Restoring system configurations related to $app..."
2023-10-31 16:39:58 +01:00
# Define and reinstall dependencies
ynh_nodejs_install
2023-10-31 16:39:58 +01:00
ynh_restore "/etc/nginx/conf.d/$domain.d/$app.conf"
2023-10-08 18:31:27 +02:00
ynh_restore "/etc/systemd/system/$app.service"
2023-10-08 18:31:27 +02:00
systemctl enable $app.service --quiet
2023-11-03 10:36:00 +01:00
mkdir -p "/var/log/$app"
#REMOVEME? Assuming ynh_config_add_logrotate is called, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chown -R $app: "/var/log/$app"
ynh_restore "/var/log/$app"
2023-10-08 18:31:27 +02:00
2023-11-03 10:36:00 +01:00
yunohost service add $app --log="/var/log/$app/$app.log"
2023-10-08 18:31:27 +02:00
#=================================================
# RELOAD NGINX AND PHP-FPM OR THE APP SERVICE
#=================================================
ynh_script_progression "Reloading NGINX web server and $app's service..."
2023-10-08 18:31:27 +02:00
ynh_systemctl --service=$app --action="start" --wait_until=""
2023-10-08 18:31:27 +02:00
ynh_systemctl --service=nginx --action=reload
2023-10-08 18:31:27 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression "Restoration completed for $app"