Adjust for webUI deferral to Fedora 41

Same as the deferral from 39 to 40, except one of the tests has
gone away in the mean time.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2024-02-27 19:49:40 -08:00
parent 2bc144ad0b
commit 4c83347d54
2 changed files with 4 additions and 4 deletions

View File

@ -847,7 +847,7 @@ sub gnome_initial_setup {
# https://fedoraproject.org//wiki/Changes/ReduceInitialSetupRedundancy
# https://bugzilla.redhat.com/show_bug.cgi?id=1474787 ,
# except 'language' was never *really* skipped (see above)
if ($relnum < 40) {
if ($relnum < 41) {
@nexts = grep { $_ ne 'keyboard' } @nexts;
@nexts = grep { $_ ne 'timezone' } @nexts;
}

View File

@ -91,9 +91,9 @@ sub run {
type_very_safely get_var("USER_PASSWORD", "weakpassword");
send_key 'ret';
}
elsif ($desktop eq 'gnome' && $relnum > 39) {
# since g-i-s 45~beta-3 we get a short g-i-s flow on live boot
# then the welcome tour
elsif ($desktop eq 'gnome' && $relnum > 40) {
# with https://fedoraproject.org/wiki/Changes/AnacondaWebUIforFedoraWorkstation
# we get a short g-i-s flow on live boot then the welcome tour
gnome_initial_setup(live => 1, livetry => 1);
handle_welcome_screen;
}