Update scripts/restore

This commit is contained in:
denis 2024-11-15 20:34:06 -05:00
parent e6ad9da2d1
commit 497d6facea

View file

@ -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