diff options
author | Darren Tucker <dtucker@cvs.openbsd.org> | 2022-01-06 22:14:26 +0000 |
---|---|---|
committer | Darren Tucker <dtucker@cvs.openbsd.org> | 2022-01-06 22:14:26 +0000 |
commit | 52cdf716f0b4ccedd7da07fad247d7d1d0b87331 (patch) | |
tree | 6b262ed0e6e449ae9332eb6519f1a1b181713e02 | |
parent | 9943405cfc236eae6112c1af3d6c73dc00f0d50e (diff) |
Don't explicitly set HostbasedAuthentication in sshd_config.
It defaults to "no", and not explicitly setting it allows us to enable
it for the (optional) hostbased test.
-rw-r--r-- | regress/usr.bin/ssh/test-exec.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/regress/usr.bin/ssh/test-exec.sh b/regress/usr.bin/ssh/test-exec.sh index 34a7327b815..892a1b5c1d6 100644 --- a/regress/usr.bin/ssh/test-exec.sh +++ b/regress/usr.bin/ssh/test-exec.sh @@ -1,4 +1,4 @@ -# $OpenBSD: test-exec.sh,v 1.88 2022/01/04 08:38:53 dtucker Exp $ +# $OpenBSD: test-exec.sh,v 1.89 2022/01/06 22:14:25 dtucker Exp $ # Placed in the Public Domain. #SUDO=sudo @@ -367,7 +367,6 @@ Host * UserKnownHostsFile $OBJ/known_hosts PubkeyAuthentication yes ChallengeResponseAuthentication no - HostbasedAuthentication no PasswordAuthentication no BatchMode yes StrictHostKeyChecking yes |