From e1c29030da37d46475ab5babe68abc4afe085799 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 18 Aug 2020 15:06:05 +0200 Subject: Revert "vm/vmimpl: disallow ssh authentication agent" This reverts commit b9683dbdfdbea5815c2cf48b20aada181dca1be3. Majority of syzbot instances started failing with: failed to run ["ssh" "-p" "22" "-F" "/dev/null" "-o" "UserKnownHostsFile=/dev/null" "-o" "BatchMode=yes" "-o" "IdentitiesOnly=yes" "-o" "IdentityAgent=none" "-o" "StrictHostKeyChecking=no" "-o" "ConnectTimeout=10" "-i" "/syzkaller/managers/upstream-bpf-next-kasan-gce/latest.tmp/key" "root@10.128.15.195" "pwd"]: exit status 255 command-line: line 0: Bad configuration option: identityagent command-line: line 0: Bad configuration option: identityagent --- vm/vmimpl/util.go | 1 - 1 file changed, 1 deletion(-) (limited to 'vm/vmimpl') diff --git a/vm/vmimpl/util.go b/vm/vmimpl/util.go index 317d5f0c6..418ae2d66 100644 --- a/vm/vmimpl/util.go +++ b/vm/vmimpl/util.go @@ -69,7 +69,6 @@ func sshArgs(debug bool, sshKey, portArg string, port int) []string { "-o", "UserKnownHostsFile=/dev/null", "-o", "BatchMode=yes", "-o", "IdentitiesOnly=yes", - "-o", "IdentityAgent=none", "-o", "StrictHostKeyChecking=no", "-o", "ConnectTimeout=10", } -- cgit mrf-deployment