diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2020-08-18 15:06:05 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-08-18 15:06:05 +0200 |
| commit | e1c29030da37d46475ab5babe68abc4afe085799 (patch) | |
| tree | 512479471eec885e3eeea5d916a37c2defbcdfaf /vm/vmimpl | |
| parent | 6fe61c6bc722931e08eefbbcf3a270af74997ef8 (diff) | |
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
Diffstat (limited to 'vm/vmimpl')
| -rw-r--r-- | vm/vmimpl/util.go | 1 |
1 files changed, 0 insertions, 1 deletions
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", } |
