Update scripts/restore
This commit is contained in:
parent
e6ad9da2d1
commit
497d6facea
1 changed files with 6 additions and 10 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue