about summary refs log tree commit diff
path: root/scripts
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-07-24T14·19+0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-07-24T14·19+0200
commit7b351da680cad41623c3f9853ff2eea3cb8e3545 (patch)
tree22390a7c5651905726ce746f0b8e9edd233dab31 /scripts
parent03103c0a36cc94238542de2bdf6eedcb679cca49 (diff)
Remove obsolete SSH master connection code
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/build-remote.pl.in2
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");