From ee07b33df1a49f241efff00312fd118071007dc0 Mon Sep 17 00:00:00 2001 From: denis Date: Fri, 15 Nov 2024 20:26:30 -0500 Subject: [PATCH] Update scripts/restore --- scripts/restore | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/scripts/restore b/scripts/restore index 789a6b4..bd0104f 100755 --- a/scripts/restore +++ b/scripts/restore @@ -32,11 +32,17 @@ ynh_script_progression "Restoring system configurations related to $app..." ynh_restore "/etc/nginx/conf.d/$domain.d/$app.conf" -ynh_restore "/etc/systemd/system/$app.service" +ynh_restore "/etc/systemd/system/$app-backend.service" -systemctl enable "$app.service" --quiet +ynh_restore "/etc/systemd/system/$app-frontend.service" -yunohost service add "$app" --description="a beautiful and performant vault to save all your files in the cloud" --log="/var/log/$app/$app.log" +systemctl enable "$app-backend.service" --quiet + +systemctl enable "$app-frontned.service" --quiet + +yunohost service add "$app-backend" --description="a beautiful and performant vault to save all your files in the cloud" --log="/var/log/$app/$app.log" + +yunohost service add "$app-frontend" --description="a beautiful and performant vault to save all your files in the cloud" --log="/var/log/$app/$app.log" #================================================= # RESTORE VARIOUS FILES @@ -53,7 +59,9 @@ ynh_restore "/var/log/$app/" #================================================= ynh_script_progression "Reloading NGINX web server and $app's service..." -ynh_systemctl --service="$app" --action="start" +ynh_systemctl --service="$app-backend" --action="start" + +ynh_systemctl --service="$app-frontend" --action="start" ynh_systemctl --service=nginx --action=reload