From f3ad9e6743a01bc32c54dd7549330723dbf895f6 Mon Sep 17 00:00:00 2001 From: Wei Zhou Date: Tue, 27 Jun 2023 11:57:02 +0200 Subject: [PATCH] marvin: fix smoke test failures if mgmt server is Ubuntu (#7583) --- tools/marvin/marvin/lib/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/marvin/marvin/lib/utils.py b/tools/marvin/marvin/lib/utils.py index 0f97c9d95c3..bc4d15cb8b3 100644 --- a/tools/marvin/marvin/lib/utils.py +++ b/tools/marvin/marvin/lib/utils.py @@ -47,7 +47,7 @@ def _configure_ssh_credentials(hypervisor): if (str(hypervisor).lower() == 'vmware' or str(hypervisor).lower() == 'hyperv'): - ssh_command = "ssh -i /var/cloudstack/management/.ssh/id_rsa -ostricthostkeychecking=no " + ssh_command = "ssh -i ~cloud/.ssh/id_rsa -ostricthostkeychecking=no " return ssh_command