Fix Network Install selection Needle (#27)

* Fix Network Install selection Needle

* Fix Network install http needle

* Fix mirrorlist URL

* Fix mirrorlist option selection

Co-authored-by: lumarel <lumarel@users.noreply.github.com>
This commit is contained in:
Lukas Magauer 2021-08-24 15:41:44 +02:00 committed by GitHub
parent ee903aa6be
commit 42aa17310c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 36 additions and 4 deletions

View File

@ -306,7 +306,7 @@ sub get_full_repo {
}
sub get_mirrorlist_url {
return "mirrors.fedoraproject.org/mirrorlist?repo=fedora-" . lc(get_var("VERSION")) . "&arch=" . get_var('ARCH');
return "mirrors.rockylinux.org/mirrorlist?repo=rocky-BaseOS-" . lc(get_var("VERSION")) . "&arch=" . get_var('ARCH');
}
sub check_help_on_pane {

View File

@ -0,0 +1,17 @@
{
"area": [
{
"width": 105,
"xpos": 56,
"height": 19,
"ypos": 210,
"type": "match"
}
],
"properties": [],
"tags": [
"ENV-DISTRI-rocky",
"ENV-FLAVOR-server",
"anaconda_install_source_selected"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

View File

@ -0,0 +1,18 @@
{
"area": [
{
"width": 100,
"xpos": 58,
"height": 15,
"ypos": 179,
"type": "match"
}
],
"properties": [],
"tags": [
"ENV-DISTRI-rocky",
"ENV-FLAVOR-server",
"LANGUAGE-english",
"anaconda_install_source_on_the_network"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

View File

@ -49,9 +49,6 @@ sub run {
send_key "tab";
send_key "tab";
send_key "down";
# since anaconda-33.17-1.fc33 we only have to press down *one*
# time to select 'mirrorlist'
send_key "down" if ($relnum < 33);
}
elsif (get_var("REPOSITORY_GRAPHICAL")) {
$repourl = get_full_repo(get_var("REPOSITORY_GRAPHICAL"));