diff options
author | Darren Tucker <dtucker@cvs.openbsd.org> | 2020-01-22 07:31:28 +0000 |
---|---|---|
committer | Darren Tucker <dtucker@cvs.openbsd.org> | 2020-01-22 07:31:28 +0000 |
commit | 688cc0431ed667d191cecd312d4a2c0afe6c24c5 (patch) | |
tree | 2cf69fd162ed605bf72c2cae02a8563adaf80c66 /regress | |
parent | 3c99f495b29f784dac6bbee8c9786ecd0d0434db (diff) |
Increase keyscan timeout from default. On slow hosts 3 concurrent keyscans
can hit the default 5 second timeout, so increase to 15 seconds.
Diffstat (limited to 'regress')
-rw-r--r-- | regress/usr.bin/ssh/keyscan.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/usr.bin/ssh/keyscan.sh b/regress/usr.bin/ssh/keyscan.sh index b8593fede8f..75a14ee0eec 100644 --- a/regress/usr.bin/ssh/keyscan.sh +++ b/regress/usr.bin/ssh/keyscan.sh @@ -1,4 +1,4 @@ -# $OpenBSD: keyscan.sh,v 1.12 2019/12/16 02:39:05 djm Exp $ +# $OpenBSD: keyscan.sh,v 1.13 2020/01/22 07:31:27 dtucker Exp $ # Placed in the Public Domain. tid="keyscan" @@ -16,7 +16,7 @@ start_sshd for t in $SSH_KEYTYPES; do trace "keyscan type $t" - ${SSHKEYSCAN} -t $t -p $PORT 127.0.0.1 127.0.0.1 127.0.0.1 \ + ${SSHKEYSCAN} -t $t -T 15 -p $PORT 127.0.0.1 127.0.0.1 127.0.0.1 \ > /dev/null 2>&1 r=$? if [ $r -ne 0 ]; then |