turn off using blowfish for scp transfers - not available on a stock ubuntu-15.04...
authorThierry Parmentelat <thierry.parmentelat@inria.fr>
Mon, 1 Jun 2015 13:09:12 +0000 (15:09 +0200)
committerThierry Parmentelat <thierry.parmentelat@inria.fr>
Mon, 1 Jun 2015 13:09:12 +0000 (15:09 +0200)
src/nepi/util/sshfuncs.py

index 83e2d7e..a01bded 100644 (file)
@@ -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',