From 633e6397d02c7a36907bd0d97b6720f9785f458c Mon Sep 17 00:00:00 2001 From: deajan Date: Wed, 10 Oct 2018 01:40:26 +0200 Subject: [PATCH] Fixed missing equal sign for password-file --- dev/n_osync.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/n_osync.sh b/dev/n_osync.sh index e7d1dc4..edec532 100644 --- a/dev/n_osync.sh +++ b/dev/n_osync.sh @@ -9,7 +9,7 @@ PROGRAM="osync" # Rsync based two way sync engine with fault tolerance AUTHOR="(C) 2013-2018 by Orsiris de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=1.3.0-beta1 -PROGRAM_BUILD=2018101003 +PROGRAM_BUILD=2018101004 IS_STABLE=no ##### Execution order #__WITH_PARANOIA_DEBUG @@ -2872,7 +2872,7 @@ function GetCommandlineArguments { ;; --password-file=*) SSH_PASSWORD_FILE=${i##*=} - opts=$opts" --password-file\"$SSH_PASSWORD_FILE\"" + opts=$opts" --password-file=\"$SSH_PASSWORD_FILE\"" ;; --instance-id=*) INSTANCE_ID=${i##*=}