From d9e400c0e99355df42b3bd2830f304555518b4b4 Mon Sep 17 00:00:00 2001 From: dtucker Date: Sat, 4 Apr 2020 23:04:41 +0000 Subject: [PATCH] Indicate if we're using a cached key in trace output. --- regress/usr.bin/ssh/test-exec.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/regress/usr.bin/ssh/test-exec.sh b/regress/usr.bin/ssh/test-exec.sh index e1980ffe5a3..e6994f7d7c8 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.75 2020/01/31 23:25:08 djm Exp $ +# $OpenBSD: test-exec.sh,v 1.76 2020/04/04 23:04:41 dtucker Exp $ # Placed in the Public Domain. USER=`id -un` @@ -377,11 +377,13 @@ SSH_HOSTKEY_TYPES=`$SSH -Q key-plain | maybe_filter_sk` for t in ${SSH_KEYTYPES}; do # generate user key - trace "generating key type $t" if [ ! -f $OBJ/$t ] || [ ${SSHKEYGEN} -nt $OBJ/$t ]; then + trace "generating key type $t" rm -f $OBJ/$t ${SSHKEYGEN} -q -N '' -t $t -f $OBJ/$t ||\ fail "ssh-keygen for $t failed" + else + trace "using cached key type $t" fi # setup authorized keys