connect network during boot (#66)

- updated configuration for boot-iso in templates.fif.json. NOTE: If you 
provide GRUB="value" during POST you must include "ip=dhcp" along with 
your custom GRUB settings.
- short circuit _anaconda_network_enable.pm to check for connection at 
start of test.
- provide needle to detect connected network interface using Network 
Spoke icon instead of Installation Source text.

NOTE: While not required with minimal-iso or dvd-iso flavors specifying 
GRUB="ip=dhcp" will also connect the network interface at boot and 
bypass _anaconda_network_enable.
This commit is contained in:
Trevor Cooper 2021-12-02 16:18:43 -08:00 committed by GitHub
parent dd209f70e3
commit 33dd37fdea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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";