diff --git a/scripts/restore b/scripts/restore index bd0104f..8078e15 100755 --- a/scripts/restore +++ b/scripts/restore @@ -36,22 +36,18 @@ ynh_restore "/etc/systemd/system/$app-backend.service" ynh_restore "/etc/systemd/system/$app-frontend.service" -systemctl enable "$app-backend.service" --quiet +systemctl enable "${app}-backend.service" --quiet -systemctl enable "$app-frontned.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}-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" +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 #================================================= -ynh_restore "/etc/cron.d/$app" - -ynh_restore "/etc/$app/" - ynh_restore "/var/log/$app/" #================================================= @@ -59,9 +55,9 @@ ynh_restore "/var/log/$app/" #================================================= ynh_script_progression "Reloading NGINX web server and $app's service..." -ynh_systemctl --service="$app-backend" --action="start" +ynh_systemctl --service="${app}-backend" --action="start" -ynh_systemctl --service="$app-frontend" --action="start" +ynh_systemctl --service="${app}-frontend" --action="start" ynh_systemctl --service=nginx --action=reload