CLOUDSTACK-1758: Update ssh key location for vmware

Signed-off-by: Prasanna Santhanam <tsp@apache.org>
This commit is contained in:
Girish Shilamkar 2013-06-19 12:10:09 +05:30 committed by Prasanna Santhanam
parent 2f659d6d86
commit 6e63bb7822

View File

@ -160,7 +160,7 @@ def get_process_status(hostip, port, username, password, linklocalip, process, h
#SSH to the machine
ssh = remoteSSHClient(hostip, port, username, password)
if str(hypervisor).lower() == 'vmware':
ssh_command = "ssh -i /var/lib/cloud/management/.ssh/id_rsa -ostricthostkeychecking=no "
ssh_command = "ssh -i /var/cloudstack/management/.ssh/id_rsa -ostricthostkeychecking=no "
else:
ssh_command = "ssh -i ~/.ssh/id_rsa.cloud -ostricthostkeychecking=no "