diff options
author | Patrik Nyblom <[email protected]> | 2011-05-18 15:56:53 +0200 |
---|---|---|
committer | Patrik Nyblom <[email protected]> | 2011-05-18 15:56:53 +0200 |
commit | 7069ebf67ea417fa5b5cc13d83aa23db92c751eb (patch) | |
tree | 28ad8bef9a0aaf307ef998b048273487320ce3a7 /erts/epmd/test | |
parent | 9adf0bd69ee0b1823efdb7eab0d453114d7198ce (diff) | |
download | otp-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.erl | 2 |
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"). |