1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-11-11 17:34:23 +00:00

Update conditions.

This commit is contained in:
Lukas Ruzicka 2018-06-29 11:54:54 +02:00
parent 77922ceac6
commit 67ff1c49b1
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ sub run {
$wait_time = 300; $wait_time = 300;
} }
# Wait for the login screen unless it is not already booted # Wait for the login screen unless it is not already booted
unless (get_var("ASSUME_BOOT")) { unless (get_var("ASSUME_BOOT") == 1) {
boot_to_login_screen(timeout => $wait_time); boot_to_login_screen(timeout => $wait_time);
} }
# GDM 3.24.1 dumps a cursor in the middle of the screen here... # GDM 3.24.1 dumps a cursor in the middle of the screen here...

View File

@ -26,7 +26,7 @@ sub run {
assert_script_run $update_command, 600; assert_script_run $update_command, 600;
} }
if (get_var("ASSUME_BOOT")) { if (get_var("ASSUME_BOOT") == 1) {
desktop_vt; desktop_vt;
} }