Fixes _boot_to_anaconda doesn't handle closest mirror gracefully in 8.5 #66

Merged
tcooper merged 1 commits from issue_65 into develop 2021-12-03 00:18:44 +00:00
4 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,16 @@
{
"area": [
{
"height": 38,
"type": "match",
"width": 42,
"xpos": 719,
"ypos": 339
}
],
"properties": [],
"tags": [
"ENV-DISTRI-rocky",
"anaconda_network_connected"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

View File

@ -55,6 +55,7 @@
"distri": "rocky",
"flavor": "boot-iso",
"settings": {
"GRUB": "ip=dhcp",
"+QEMURAM": 3072,
"TEST_TARGET": "ISO"
},
@ -65,6 +66,7 @@
"distri": "rocky",
"flavor": "boot-iso",
"settings": {
"GRUB": "ip=dhcp",
"+QEMURAM": 3072,
"TEST_TARGET": "ISO"
},

View File

@ -9,6 +9,11 @@ sub run {
# Anaconda hub
assert_screen "anaconda_main_hub", 300; #
if (check_screen ["anaconda_network_connected"], 60) {
# network is connected already, we're done
return;
}
assert_and_click "anaconda_main_hub_network_host_name_not_connected";
assert_and_click "anaconda_network_connect";