'ControlPath' ssh client configuration file option requires OpenSSH 4.2 or

later to accept 'none' as an indication to disable connection multiplexing
This commit is contained in:
Yang Tse 2008-01-04 14:12:10 +00:00
Родитель c479c64333
Коммит 61a2d5ea75
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -746,6 +746,9 @@ if((($sshid =~ /OpenSSH/) && ($sshvernum >= 370)) ||
if(($sshid =~ /OpenSSH/) && ($sshvernum >= 390)) {
push @cfgarr, 'ControlMaster no';
}
if(($sshid =~ /OpenSSH/) && ($sshvernum >= 420)) {
push @cfgarr, 'ControlPath none';
}