[pypy-svn] r65135 - pypy/build/doc

arigo at codespeak.net arigo at codespeak.net
Thu May 7 14:56:05 CEST 2009


Author: arigo
Date: Thu May  7 14:56:05 2009
New Revision: 65135

Modified:
   pypy/build/doc/ssh_config
Log:
Don't use "StrictHostKeyChecking no".  It's better to make aliases with
"HostKeyAlias".  Some versions of ssh disable port forwarding if they
see "StrictHostKeyChecking no", for some reason.


Modified: pypy/build/doc/ssh_config
==============================================================================
--- pypy/build/doc/ssh_config	(original)
+++ pypy/build/doc/ssh_config	Thu May  7 14:56:05 2009
@@ -1,21 +1,21 @@
 Host bigdog2
     Hostname 8.8.197.72
-    StrictHostKeyChecking no
+    HostKeyAlias bigdog2
 
 Host bigdog6
     Hostname 8.8.197.72
     Port 2222
-    StrictHostKeyChecking no
+    HostKeyAlias bigdog6
 
 Host bigdog-vm1
     Hostname 8.8.197.72
     Port 3001
-    StrictHostKeyChecking no
+    HostKeyAlias bigdog-vm1
 
 Host bigdog-vm2
     Hostname 8.8.197.72
     Port 2226
-    StrictHostKeyChecking no
+    HostKeyAlias bigdog-vm2
 
 Host snake
     HostName snake.cs.uni-duesseldorf.de



More information about the Pypy-commit mailing list