Update scripts/restore

This commit is contained in:
denis 2024-11-15 20:26:30 -05:00
parent 6ff613ad55
commit ee07b33df1

View file

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