1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jappix_ynh.git synced 2024-09-03 19:26:19 +02:00

Fix linter warning

This commit is contained in:
Éric Gaspar 2020-11-22 23:10:08 +01:00 committed by GitHub
parent d3a9861396
commit bf5482b195
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,19 +1,21 @@
#!/bin/bash
# causes the shell to exit if any subcommand or pipeline returns a non-zero status
set -eu
source /usr/share/yunohost/helpers
ynh_abort_if_errors
# Retrieve old app settings
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get $app domain)
# Restore sources & data
sudo cp -a ./sources "/var/www/${app}"
cp -a ./sources "/var/www/${app}"
# Restore Nginx and YunoHost parameters
sudo cp -a ./nginx.conf "/etc/nginx/conf.d/${domain}.d/${app}.conf"
cp -a ./nginx.conf "/etc/nginx/conf.d/${domain}.d/${app}.conf"
# Reload services
sudo service nginx reload
ynh_systemd_action --service_name=nginx --action=reload