From bf5482b195b21d311ea3b85e93c7ef7227b494e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Sun, 22 Nov 2020 23:10:08 +0100 Subject: [PATCH] Fix linter warning --- scripts/restore | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/scripts/restore b/scripts/restore index bffce4b..73a6d51 100644 --- a/scripts/restore +++ b/scripts/restore @@ -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