Add /opt/ssh/sbin and /opt/ssh/libexec to the sshd locations search list.
Improve wording of a couple of debug messages.
This commit is contained in:
parent
c4e5613a7d
commit
536f98a766
@ -42,6 +42,8 @@ my @sftppath = qw(
|
|||||||
/usr/lib/misc
|
/usr/lib/misc
|
||||||
/usr/local/sbin
|
/usr/local/sbin
|
||||||
/usr/freeware/bin
|
/usr/freeware/bin
|
||||||
|
/opt/ssh/sbin
|
||||||
|
/opt/ssh/libexec
|
||||||
);
|
);
|
||||||
|
|
||||||
my $username = $ENV{USER};
|
my $username = $ENV{USER};
|
||||||
@ -131,14 +133,13 @@ if ($verbose) {
|
|||||||
|
|
||||||
# Verify minimum OpenSSH version.
|
# Verify minimum OpenSSH version.
|
||||||
if (($ssh_daemon !~ /OpenSSH/) || (10 * $ssh_ver_major + $ssh_ver_minor < 37)) {
|
if (($ssh_daemon !~ /OpenSSH/) || (10 * $ssh_ver_major + $ssh_ver_minor < 37)) {
|
||||||
my $info;
|
|
||||||
if(!$ssh_daemon) {
|
if(!$ssh_daemon) {
|
||||||
$info = "OpenSSH not found";
|
print "SSH server daemon found is not an OpenSSH daemon\n";
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$info = "Found OpenSSH $ssh_ver_major.$ssh_ver_minor"
|
print "SSH server daemon found is OpenSSH $ssh_ver_major.$ssh_ver_minor\n";
|
||||||
}
|
}
|
||||||
print "$info: SCP, SFTP and SOCKS tests require OpenSSH 3.7 or later\n";
|
print "SCP, SFTP and SOCKS tests require OpenSSH 3.7 or later\n";
|
||||||
exit 1;
|
exit 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user