summaryrefslogtreecommitdiffstats
path: root/dispatch.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2005-05-24 17:11:53 +0000
committerChris Lumens <clumens@redhat.com>2005-05-24 17:11:53 +0000
commitecfa0b3284f5506c9e1e1f059e8a64dbcc286a0c (patch)
treefc1f8bc894d7229ea3a46b7f831382e5fe6f63ef /dispatch.py
parent61e404dbbb661b0f7e2db9ada2a359a2cc7ce7c4 (diff)
downloadanaconda-ecfa0b3284f5506c9e1e1f059e8a64dbcc286a0c.tar.gz
anaconda-ecfa0b3284f5506c9e1e1f059e8a64dbcc286a0c.tar.xz
anaconda-ecfa0b3284f5506c9e1e1f059e8a64dbcc286a0c.zip
Automatically select any conditional packages that are required by
currently selected groups. This step used to be only needed for parts of language support, but is now needed more widely (#154572, #158389).
Diffstat (limited to 'dispatch.py')
-rw-r--r--dispatch.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/dispatch.py b/dispatch.py
index e372d5e4a..9a92f0e80 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -30,6 +30,7 @@ from packages import betaNagScreen
from packages import selectLanguageSupportGroups
from packages import setupTimezone
from packages import setFileCons
+from packages import fixupConditionals
from partitioning import partitionMethodSetup, partitionObjectsInitialize
from partitioning import partitioningComplete
from floppy import makeBootdisk
@@ -115,6 +116,7 @@ installSteps = [
("handleX11pkgs", handleX11Packages, ("dir", "intf", "dispatch",
"id", "instPath")),
("handlemiscpkgs", handleMiscPackages, ("intf", "id", "dir")),
+ ("fixupconditionals", fixupConditionals, ("id.grpset",)),
("checkdeps", checkDependencies, ("dir", "intf", "dispatch",
"id", "instPath")),
("dependencies", ("id.grpset", "id.dependencies")),