diff options
author | Darren Tucker <dtucker@cvs.openbsd.org> | 2024-12-04 10:51:14 +0000 |
---|---|---|
committer | Darren Tucker <dtucker@cvs.openbsd.org> | 2024-12-04 10:51:14 +0000 |
commit | ccadddeb317c105643848e7faa5d556b1baa41e9 (patch) | |
tree | 9684229a22443fa8aa1501731b0da9345cdd3622 | |
parent | a8599bdfc2bbbc9c27aa2ec8e56a9c5b479dec49 (diff) |
Don't assume existence of SK provider in test.
Patch from balu.gajjala at gmail via bz#3402.
-rw-r--r-- | regress/usr.bin/ssh/hostkey-agent.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/usr.bin/ssh/hostkey-agent.sh b/regress/usr.bin/ssh/hostkey-agent.sh index 38486585701..28dcfe17068 100644 --- a/regress/usr.bin/ssh/hostkey-agent.sh +++ b/regress/usr.bin/ssh/hostkey-agent.sh @@ -1,4 +1,4 @@ -# $OpenBSD: hostkey-agent.sh,v 1.14 2024/11/26 22:02:28 djm Exp $ +# $OpenBSD: hostkey-agent.sh,v 1.15 2024/12/04 10:51:13 dtucker Exp $ # Placed in the Public Domain. tid="hostkey agent" @@ -49,7 +49,7 @@ for k in $SSH_KEYTYPES ; do fi done -SSH_CERTTYPES=`ssh -Q key-sig | grep 'cert-v01@openssh.com'` +SSH_CERTTYPES=`ssh -Q key-sig | grep 'cert-v01@openssh.com' | maybe_filter_sk` # Prepare sshd_proxy for certificates. cp $OBJ/sshd_proxy.orig $OBJ/sshd_proxy |