qemu-devel
[Top][All Lists]
Advanced

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

Re: [PATCH] tests/vm/openbsd: Move timezone set to after disk setup


From: Brad Smith
Subject: Re: [PATCH] tests/vm/openbsd: Move timezone set to after disk setup
Date: Sat, 16 Oct 2021 18:24:48 -0400
User-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:94.0) Gecko/20100101 Thunderbird/94.0

Yes, this is the correct order. The timezone question comes after the install sets are extracted.

Signed-off-by: Brad Smith <brad@comstyle.com>

On 10/13/2021 12:31 PM, Richard Henderson wrote:
Currently the install gets stuck waiting for the timezone
when the installer is waiting on the disk.  Swap the two.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
  tests/vm/openbsd | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/vm/openbsd b/tests/vm/openbsd
index c4c78a80f1..cbb4006ef7 100755
--- a/tests/vm/openbsd
+++ b/tests/vm/openbsd
@@ -119,7 +119,6 @@ class OpenBSDVM(basevm.BaseVM):
          self.console_send("%s\n" % self._config["guest_pass"])
self.console_wait_send("Allow root ssh login", "yes\n")
-        self.console_wait_send("timezone",                "UTC\n")
          self.console_wait_send("root disk",               "\n")
          self.console_wait_send("(W)hole disk",            "\n")
          self.console_wait_send("(A)uto layout",           "\n")
@@ -130,6 +129,7 @@ class OpenBSDVM(basevm.BaseVM):
self.print_step("Installation started now, this will take a while")
          self.console_wait_send("Location of sets",        "done\n")
+        self.console_wait_send("timezone",                "UTC\n")
self.console_wait("successfully completed")
          self.print_step("Installation finished, rebooting")



reply via email to

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