reverting root ssh key path. Although using the default MyPLC root key may work for...
authorTony Mack <tmack@cs.princeton.edu>
Tue, 16 Feb 2010 23:59:59 +0000 (23:59 +0000)
committerTony Mack <tmack@cs.princeton.edu>
Tue, 16 Feb 2010 23:59:59 +0000 (23:59 +0000)
sfa/methods/get_key.py

index 15f520c..46af369 100644 (file)
@@ -66,7 +66,8 @@ class get_key(Method):
         key_dest="/etc/sfa/node.key"
         gid_dest="/etc/sfa/node.gid" 
         scp = "/usr/bin/scp" 
-        identity = "/etc/planetlab/root_ssh_key.rsa"
+        #identity = "/etc/planetlab/root_ssh_key.rsa"
+        identity = "/etc/sfa/root_ssh_key"
         scp_options=" -i %(identity)s " % locals()
         scp_options+="-o StrictHostKeyChecking=no " % locals()
         scp_key_command="%(scp)s %(scp_options)s %(key_filename)s root@%(host)s:%(key_dest)s" %\