diff mbox series

tests/vm/openbsd: Move timezone set to after disk setup

Message ID 20211013163129.983810-1-richard.henderson@linaro.org (mailing list archive)
State New, archived
Headers show
Series tests/vm/openbsd: Move timezone set to after disk setup | expand

Commit Message

Richard Henderson Oct. 13, 2021, 4:31 p.m. UTC
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(-)

Comments

Brad Smith Oct. 16, 2021, 10:24 p.m. UTC | #1
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")
diff mbox series

Patch

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")