1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-21 06:27:22 +00:00

More updates for webUI deferral to F42

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2024-08-18 16:23:13 -07:00
parent 3da4f4e8bb
commit 7379f7636d
2 changed files with 3 additions and 3 deletions

View File

@ -867,11 +867,11 @@ sub gnome_initial_setup {
} }
if ($args{prelogin}) { if ($args{prelogin}) {
# 'language', 'keyboard' and 'timezone' were skipped between F28 # 'language', 'keyboard' and 'timezone' were skipped between F28
# and F39 in the 'new user' mode by # and F42 in the 'new user' mode by
# https://fedoraproject.org//wiki/Changes/ReduceInitialSetupRedundancy # https://fedoraproject.org//wiki/Changes/ReduceInitialSetupRedundancy
# https://bugzilla.redhat.com/show_bug.cgi?id=1474787 , # https://bugzilla.redhat.com/show_bug.cgi?id=1474787 ,
# except 'language' was never *really* skipped (see above) # except 'language' was never *really* skipped (see above)
if ($relnum < 41) { if ($relnum < 42) {
@nexts = grep { $_ ne 'keyboard' } @nexts; @nexts = grep { $_ ne 'keyboard' } @nexts;
@nexts = grep { $_ ne 'timezone' } @nexts; @nexts = grep { $_ ne 'timezone' } @nexts;
} }

View File

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