Fixes install_anaconda_text@64bit on rocky-8.4-universal-x86_64 #56
1 changed files with 13 additions and 4 deletions
|
@ -104,10 +104,19 @@ sub run {
|
||||||
unless (wait_serial "Installation") { die "Text version of Anaconda has not started."; }
|
unless (wait_serial "Installation") { die "Text version of Anaconda has not started."; }
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
assert_screen "anaconda_use_text_mode", 300;
|
if (get_var("DISTRI") eq "rocky") {
|
||||||
type_string "2\n";
|
# Rocky doesn't have network enabled at boot so we are not prompted
|
||||||
# wait for text version of Anaconda main hub
|
# for VNC...
|
||||||
assert_screen "anaconda_main_hub_text", 300;
|
# wait for text version of Anaconda main hub
|
||||||
|
assert_screen "anaconda_main_hub_text", 300;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
# Fedora has a use text mode menu here
|
||||||
|
assert_screen "anaconda_use_text_mode", 300;
|
||||||
|
type_string "2\n";
|
||||||
|
# wait for text version of Anaconda main hub
|
||||||
|
assert_screen "anaconda_main_hub_text", 300;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in a new issue