This is an automated email from the ASF dual-hosted git repository.
weizhou pushed a commit to branch 4.18
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/4.18 by this push:
new f3ad9e6743a marvin: fix smoke test failures if mgmt server is Ubuntu
(#7583)
f3ad9e6743a is described below
commit f3ad9e6743a01bc32c54dd7549330723dbf895f6
Author: Wei Zhou <[email protected]>
AuthorDate: Tue Jun 27 11:57:02 2023 +0200
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