make ssh connection transparent

do not use an escape character for the host shell

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2017-11-17 10:22:53 +01:00 committed by Wolfgang Bumiller
parent a83717b705
commit 6befdf6834

View File

@ -662,7 +662,7 @@ __PACKAGE__->register_method ({
# NOTE: vncterm VNC traffic is already TLS encrypted,
# so we select the fastest chipher here (or 'none'?)
my $remcmd = $remip ?
['/usr/bin/ssh', '-t', $remip] : [];
['/usr/bin/ssh', '-e', 'none', '-t', $remip] : [];
my $shcmd;