summaryrefslogtreecommitdiffstats
path: root/dispatch.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-06-27 23:32:21 +0000
committerJeremy Katz <katzj@redhat.com>2002-06-27 23:32:21 +0000
commita09fa1f306f1b563bd715deb30bb4bc8a6318f02 (patch)
treee4fe64e4bd0b58b43f7aeac49e7a74a983c6df12 /dispatch.py
parentde3dc99f48331fad6df60809231554f03b5500a8 (diff)
downloadanaconda-a09fa1f306f1b563bd715deb30bb4bc8a6318f02.tar.gz
anaconda-a09fa1f306f1b563bd715deb30bb4bc8a6318f02.tar.xz
anaconda-a09fa1f306f1b563bd715deb30bb4bc8a6318f02.zip
add hackish way to handle lack of real conditionals in new comps file right now. needs to go before the final release, but will work for now
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 bf7ef9bd3..d2ab04d88 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -25,6 +25,7 @@ from packages import doPreInstall, doPostInstall, doPostAction
from autopart import doAutoPartition
from packages import firstbootConfiguration
from packages import betaNagScreen
+from packages import packageGroupSelectHack
from partitioning import partitionMethodSetup, partitionObjectsInitialize
from partitioning import partitioningComplete
from floppy import makeBootdisk
@@ -99,6 +100,7 @@ installSteps = [
("findpackages", upgradeFindPackages, ("intf", "method", "id",
"instPath", "dir")),
("package-selection", ("id.comps", "dispatch")),
+ ("package-group-select-hack", packageGroupSelectHack, ("id.instClass", "id",)),
("indivpackage", ("id.comps", "id.hdList")),
("handleX11pkgs", handleX11Packages, ("dir", "intf", "dispatch",
"id", "instPath")),