This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch bernie/benchmarking in repository toolchain/abe.
commit b97131b48ee131d1a3c64ec9fef0344001d088ec Author: Bernard Ogden bernie.ogden@linaro.org Date: Fri Jul 31 10:11:50 2015 +0200
Do not disable ssh host checks
Change-Id: I5b1a5a6bff2ffb319657e4b230ab2fcd421fc774 --- lib/remote.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/lib/remote.sh b/lib/remote.sh index f8e5d4d..c39e223 100644 --- a/lib/remote.sh +++ b/lib/remote.sh @@ -74,7 +74,7 @@ remote_download()
local c for ((c = ${retries}; c >= 0; c--)); do - dryrun "rsync -e "ssh -o PasswordAuthentication=no -o PubkeyAuthentication=ye [...] + dryrun "rsync -e "ssh -o PasswordAuthentication=no -o PubkeyAuthentication=ye [...] if test $? -eq 0; then return 0 elif test $c -gt 0; then @@ -120,7 +120,7 @@ remote_upload()
local c for ((c = ${retries}; c >= 0; c--)); do - dryrun "rsync -e "ssh -o PasswordAuthentication=no -o PubkeyAuthentication=ye [...] + dryrun "rsync -e "ssh -o PasswordAuthentication=no -o PubkeyAuthentication=ye [...] if test $? -eq 0; then return 0 elif test $c -gt 0; then @@ -141,7 +141,7 @@ remote_exec() return 1 fi shift 2 - dryrun "ssh -o PasswordAuthentication=no -o PubkeyAuthentication=yes -o StrictHo [...] + dryrun "ssh -o PasswordAuthentication=no -o PubkeyAuthentication=yes -o LogLevel [...] return $? }
@@ -157,7 +157,7 @@ remote_exec_async() fi shift 4
- dryrun "ssh -n -o PasswordAuthentication=no -o PubkeyAuthentication=yes -o Stric [...] + dryrun "ssh -n -o PasswordAuthentication=no -o PubkeyAuthentication=yes -o LogLe [...]
#Backgrounded command won't give a meaningful error code return 0