diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_common.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_common.sh b/tests/test_common.sh index cba9693..3d9d667 100644 --- a/tests/test_common.sh +++ b/tests/test_common.sh @@ -3,5 +3,5 @@ run_ssh() { test -n "${SSH_KEYPATH:-}" && set -- -i "$SSH_KEYPATH" "$@" test -n "${SSH_PORT:-}" && set -- -p "$SSH_PORT" "$@" - ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -l root "$@" + ssh -o NoHostAuthenticationForLocalhost=yes -l root "$@" } |