qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 17/22] Acceptance Tests: fix population of public key in clou


From: Wainer dos Santos Moschetta
Subject: Re: [PATCH 17/22] Acceptance Tests: fix population of public key in cloudinit image
Date: Mon, 15 Feb 2021 11:48:33 -0300
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.7.0


On 2/3/21 2:23 PM, Cleber Rosa wrote:
Currently the path of the ssh public key is being set, but its
content is obviously what's needed.

Signed-off-by: Cleber Rosa <crosa@redhat.com>
---
  tests/acceptance/avocado_qemu/__init__.py | 4 +++-
  1 file changed, 3 insertions(+), 1 deletion(-)


Reviewed-by: Wainer dos Santos Moschetta <wainersm@redhat.com>



diff --git a/tests/acceptance/avocado_qemu/__init__.py 
b/tests/acceptance/avocado_qemu/__init__.py
index 472088ae7d..8156224625 100644
--- a/tests/acceptance/avocado_qemu/__init__.py
+++ b/tests/acceptance/avocado_qemu/__init__.py
@@ -337,13 +337,15 @@ class LinuxTest(Test, LinuxSSHMixIn):
          try:
              cloudinit_iso = os.path.join(self.workdir, 'cloudinit.iso')
              self.phone_home_port = network.find_free_port()
+            with open(ssh_pubkey) as pubkey:
+                pubkey_content = pubkey.read()
              cloudinit.iso(cloudinit_iso, self.name,
                            username='root',
                            password='password',
                            # QEMU's hard coded usermode router address
                            phone_home_host='10.0.2.2',
                            phone_home_port=self.phone_home_port,
-                          authorized_key=ssh_pubkey)
+                          authorized_key=pubkey_content)
          except Exception:
              self.cancel('Failed to prepare the cloudinit image')
          return cloudinit_iso




reply via email to

[Prev in Thread] Current Thread [Next in Thread]