From 6e63bb78220a057bca329ee6a8779f0e4c476586 Mon Sep 17 00:00:00 2001 From: Girish Shilamkar Date: Wed, 19 Jun 2013 12:10:09 +0530 Subject: [PATCH] CLOUDSTACK-1758: Update ssh key location for vmware Signed-off-by: Prasanna Santhanam --- tools/marvin/marvin/integration/lib/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/marvin/marvin/integration/lib/utils.py b/tools/marvin/marvin/integration/lib/utils.py index 6892c41d1ec..839ec89f4fd 100644 --- a/tools/marvin/marvin/integration/lib/utils.py +++ b/tools/marvin/marvin/integration/lib/utils.py @@ -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 "