diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-07-24T14·19+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-07-24T14·19+0200 |
commit | 7b351da680cad41623c3f9853ff2eea3cb8e3545 (patch) | |
tree | 22390a7c5651905726ce746f0b8e9edd233dab31 /scripts/build-remote.pl.in | |
parent | 03103c0a36cc94238542de2bdf6eedcb679cca49 (diff) |
Remove obsolete SSH master connection code
Diffstat (limited to 'scripts/build-remote.pl.in')
-rwxr-xr-x | scripts/build-remote.pl.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build-remote.pl.in b/scripts/build-remote.pl.in index a55d758252ea..73d7abe37d32 100755 --- a/scripts/build-remote.pl.in +++ b/scripts/build-remote.pl.in @@ -194,7 +194,7 @@ REQ: while (1) { # Connect to the selected machine. - @sshOpts = ("-i", $machine->{sshKeys}, "-x"); + my @sshOpts = ("-i", $machine->{sshKeys}); $hostName = $machine->{hostName}; eval { ($from, $to) = connectToRemoteNix($hostName, \@sshOpts, "2>&4"); |