mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-11 01:24:20 +00:00
g-i-s: go back to relnum conditional, update comments
Changing to a conditional based on whether we saw webui broke the ostree installer install tests, because they of course use the same g-i-s even though they don't use webui. So, we have to go back to the relnum-based conditional :/ Yes, this means we have redundant screens in g-i-s for install paths that use gtkui to deploy GNOME, e.g. SB installer images, but I can't see a good way to fix that. We need to show those screens for the live install, which is the 'most important' one, and we don't have an obvious way to show them for installs that used webui but hide them for installs that used gtkui. Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
eed86f4feb
commit
cbb9bb59d4
20
lib/utils.pm
20
lib/utils.pm
@ -867,23 +867,21 @@ sub gnome_initial_setup {
|
||||
@nexts = ('language', 'keyboard');
|
||||
}
|
||||
if ($args{prelogin}) {
|
||||
# On releases that use anaconda gtkui, we configure g-i-s to
|
||||
# skip 'language', 'keyboard' and 'timezone' using a custom
|
||||
# vendor.conf:
|
||||
# On releases that use anaconda gtkui on live images, we
|
||||
# configure g-i-s to skip 'language', 'keyboard' and 'timezone'
|
||||
# using a custom vendor.conf:
|
||||
# https://fedoraproject.org//wiki/Changes/ReduceInitialSetupRedundancy
|
||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1474787 ,
|
||||
# but 'language' is never *really* skipped (see above)
|
||||
unless (get_var("_ANACONDA_WEBUI")) {
|
||||
if ($relnum < 42) {
|
||||
@nexts = grep { $_ ne 'keyboard' } @nexts;
|
||||
@nexts = grep { $_ ne 'timezone' } @nexts;
|
||||
}
|
||||
# On releases that use anaconda-webui, we use vendor.conf to
|
||||
# skip 'language' and 'keyboard' (meaning 'language' is turned
|
||||
# into 'welcome' and 'keyboard' is really skipped) on live
|
||||
# installs because we saw them already. network installs and
|
||||
# disk image deployments will show these screens (which is good
|
||||
# for disk image deployments, but redundant for network
|
||||
# installs)
|
||||
# if g-i-s ran before anaconda (as expected on the live + webui
|
||||
# flow), anaconda forwards a g-i-s state file to the installed
|
||||
# system, causing it to skip 'language' and 'keyboard' (meaning
|
||||
# 'language' is turned into 'welcome' and 'keyboard' is really
|
||||
# skipped)
|
||||
if (match_has_tag "start_setup") {
|
||||
# if we saw start_setup, that means 'language' was skipped
|
||||
# and we can assume 'keyboard' will also be skipped
|
||||
|
Loading…
Reference in New Issue
Block a user