diff options
-rw-r--r-- | tests/sshserver.pl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/sshserver.pl b/tests/sshserver.pl index 22b83c945..af618529d 100644 --- a/tests/sshserver.pl +++ b/tests/sshserver.pl @@ -376,6 +376,16 @@ if((! -e $hstprvkeyf) || (! -e $hstpubkeyf) || #*************************************************************************** +# Increased loglevel to debug autobuild's publickey authentication +# failures when using OpenSSH 2.9.9 or SunSSH +# +if((($sshdid =~ /OpenSSH/) && ($sshvernum == 299)) || + ($sshdid =~ /SunSSH/)) { + $loglevel = 'DEBUG3'; +} + + +#*************************************************************************** # Initialize sshd config with options actually supported in OpenSSH 2.9.9 # logmsg 'generating ssh server config file...' if($verbose); |