From: Thierry Parmentelat Date: Mon, 1 Jun 2015 13:09:12 +0000 (+0200) Subject: turn off using blowfish for scp transfers - not available on a stock ubuntu-15.04... X-Git-Tag: nepi-3.2.2-pypi~2 X-Git-Url: http://git.onelab.eu/?p=nepi.git;a=commitdiff_plain;h=219ac627505b0eaf438a099d44a48f12e78a3671 turn off using blowfish for scp transfers - not available on a stock ubuntu-15.04 distro --- diff --git a/src/nepi/util/sshfuncs.py b/src/nepi/util/sshfuncs.py index 83e2d7e4..a01bdeda 100644 --- a/src/nepi/util/sshfuncs.py +++ b/src/nepi/util/sshfuncs.py @@ -344,9 +344,13 @@ def rcopy(source, dest, tmp_known_hosts = None args = ['scp', '-q', '-p', '-C', + # 2015-06-01 Thierry: I am commenting off blowfish + # as this is not available on a plain ubuntu 15.04 install + # this IMHO is too fragile, shoud be something the user + # decides explicitly (so he is at least aware of that dependency) # Speed up transfer using blowfish cypher specification which is # faster than the default one (3des) - '-c', 'blowfish', + # '-c', 'blowfish', # Don't bother with localhost. Makes test easier '-o', 'NoHostAuthenticationForLocalhost=yes', '-o', 'ConnectTimeout=60',