Improve test logic, to be sure #174

Merged
AlanMarshall merged 1 commits from serial_console_install into develop 2023-05-03 18:20:21 +00:00

View File

@ -99,7 +99,7 @@ sub run {
# we direct the installer to virtio-console1, and use # we direct the installer to virtio-console1, and use
# virtio-console as a root console # virtio-console as a root console
select_console('virtio-console1'); select_console('virtio-console1');
if (get_var("DISTRI") eq "rocky" && (get_version_major() > 8)) { if (get_var("DISTRI") eq "rocky" && (get_version_major() >= 9)) {
unless (wait_serial "Use text mode", timeout => 120) { die "Anaconda has not started."; } unless (wait_serial "Use text mode", timeout => 120) { die "Anaconda has not started."; }
type_string "2\n"; type_string "2\n";
} }