Drop a couple of webUI conditionals to 39, not 40

We just landed the webUI stuff for F39, so now we need these
conditionals to kick in for F39+, not F40+.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2023-08-23 15:48:53 -07:00
parent 7ee387f242
commit f1a6c91784
2 changed files with 2 additions and 2 deletions

View File

@ -756,7 +756,7 @@ sub gnome_initial_setup {
# redundant for network installs)
# FIXME modify this to drop the pages on F39+ live installs
# once the anaconda PR is merged or addressed some other way
if ($relnum < 40) {
if ($relnum < 39) {
@nexts = grep { $_ ne 'keyboard' } @nexts;
@nexts = grep { $_ ne 'timezone' } @nexts;
}

View File

@ -91,7 +91,7 @@ sub run {
type_very_safely get_var("USER_PASSWORD", "weakpassword");
send_key 'ret';
}
elsif ($desktop eq 'gnome' && $relnum > 39) {
elsif ($desktop eq 'gnome' && $relnum > 38) {
# since g-i-s 45~beta-3 we get a short g-i-s flow on live boot
# then the welcome tour
gnome_initial_setup(live => 1, livetry => 1);