aboutsummaryrefslogtreecommitdiffstats
path: root/erts/epmd/test
diff options
context:
space:
mode:
authorPatrik Nyblom <[email protected]>2011-05-18 15:56:53 +0200
committerPatrik Nyblom <[email protected]>2011-05-18 15:56:53 +0200
commit7069ebf67ea417fa5b5cc13d83aa23db92c751eb (patch)
tree28ad8bef9a0aaf307ef998b048273487320ce3a7 /erts/epmd/test
parent9adf0bd69ee0b1823efdb7eab0d453114d7198ce (diff)
downloadotp-7069ebf67ea417fa5b5cc13d83aa23db92c751eb.tar.gz
otp-7069ebf67ea417fa5b5cc13d83aa23db92c751eb.tar.bz2
otp-7069ebf67ea417fa5b5cc13d83aa23db92c751eb.zip
Make ssh proxy work with older versions of ssh
Diffstat (limited to 'erts/epmd/test')
-rw-r--r--erts/epmd/test/epmd_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/epmd/test/epmd_SUITE.erl b/erts/epmd/test/epmd_SUITE.erl
index 27de129e62..6889ec0b34 100644
--- a/erts/epmd/test/epmd_SUITE.erl
+++ b/erts/epmd/test/epmd_SUITE.erl
@@ -905,7 +905,7 @@ proxy_port() ->
ssh_proxy(SSHHost,ProxyPort) ->
?line Host = lists:nth(2,string:tokens(atom_to_list(node()),"@")),
% Requires proxy to be a unix host with the command 'read' accessible
- ?line osrun("ssh -L localhost:"++integer_to_list(ProxyPort)++":"++Host++":"
+ ?line osrun("ssh -L "++integer_to_list(ProxyPort)++":"++Host++":"
++integer_to_list(?PORT)++" "++SSHHost++" read").