diff options
author | djm@openbsd.org <djm@openbsd.org> | 2019-12-11 19:47:14 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-12-16 04:20:35 +0100 |
commit | a7fc1df246e80bfdabd09b069b91c72f9c578ca8 (patch) | |
tree | fde2c7b364ccc1f3b1c4c6e08b853651f1dc3a68 /regress/cert-hostkey.sh | |
parent | upstream: don't treat HostKeyAgent=none as a path either; avoids (diff) | |
download | openssh-a7fc1df246e80bfdabd09b069b91c72f9c578ca8.tar.xz openssh-a7fc1df246e80bfdabd09b069b91c72f9c578ca8.zip |
upstream: it's no longer possible to disable privilege separation
in sshd, so don't double the tests' work by trying both off/on
OpenBSD-Regress-ID: d366665466dbd09e9b707305da884be3e7619c68
Diffstat (limited to 'regress/cert-hostkey.sh')
-rw-r--r-- | regress/cert-hostkey.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/regress/cert-hostkey.sh b/regress/cert-hostkey.sh index dc40b782a..67a9795d0 100644 --- a/regress/cert-hostkey.sh +++ b/regress/cert-hostkey.sh @@ -1,4 +1,4 @@ -# $OpenBSD: cert-hostkey.sh,v 1.20 2019/11/26 23:43:10 djm Exp $ +# $OpenBSD: cert-hostkey.sh,v 1.21 2019/12/11 18:47:14 djm Exp $ # Placed in the Public Domain. tid="certified host keys" @@ -131,7 +131,7 @@ attempt_connect() { } # Basic connect and revocation tests. -for privsep in yes sandbox ; do +for privsep in yes ; do for ktype in $PLAIN_TYPES ; do verbose "$tid: host ${ktype} cert connect privsep $privsep" ( @@ -169,7 +169,7 @@ for ktype in $PLAIN_TYPES ; do kh_revoke cert_host_key_${ktype}.pub >> $OBJ/known_hosts-cert.orig done cp $OBJ/known_hosts-cert.orig $OBJ/known_hosts-cert -for privsep in yes sandbox ; do +for privsep in yes ; do for ktype in $PLAIN_TYPES ; do verbose "$tid: host ${ktype} revoked cert privsep $privsep" ( |