From: Anil-Kumar Vengalil Date: Fri, 22 Jan 2010 15:41:41 +0000 (+0000) Subject: using the correct root_ssh_key to reach the node X-Git-Tag: sfa-0.9-11~206 X-Git-Url: http://git.onelab.eu/?p=sfa.git;a=commitdiff_plain;h=1a44229f01716db1d29b34a3a39d21ad822a6bbc using the correct root_ssh_key to reach the node --- diff --git a/sfa/methods/get_key.py b/sfa/methods/get_key.py index f84c5fef..15f520cd 100644 --- a/sfa/methods/get_key.py +++ b/sfa/methods/get_key.py @@ -66,7 +66,7 @@ class get_key(Method): key_dest="/etc/sfa/node.key" gid_dest="/etc/sfa/node.gid" scp = "/usr/bin/scp" - identity = "/etc/sfa/root_ssh_key" + identity = "/etc/planetlab/root_ssh_key.rsa" 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" %\