summaryrefslogtreecommitdiffstats
path: root/dispatch.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-07-17 05:46:32 +0000
committerJeremy Katz <katzj@redhat.com>2002-07-17 05:46:32 +0000
commit3365968c0067cdd781efe666222cb84ee9434afd (patch)
tree724a24be09c26f054f73799b35f01c0aa254d516 /dispatch.py
parentc7ebfa7640c594ba133a5b223129e20e2c8fa32f (diff)
downloadanaconda-3365968c0067cdd781efe666222cb84ee9434afd.tar.gz
anaconda-3365968c0067cdd781efe666222cb84ee9434afd.tar.xz
anaconda-3365968c0067cdd781efe666222cb84ee9434afd.zip
make language support group selection a tad bit cleaner and move it to be before package-selection so that the size is right
Diffstat (limited to 'dispatch.py')
-rw-r--r--dispatch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/dispatch.py b/dispatch.py
index 4bda60f9f..525120509 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -25,7 +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 packages import selectLanguageSupportGroups
from partitioning import partitionMethodSetup, partitionObjectsInitialize
from partitioning import partitioningComplete
from floppy import makeBootdisk
@@ -100,8 +100,8 @@ installSteps = [
("desktopchoice", ("intf", "dispatch")),
("findpackages", upgradeFindPackages, ("intf", "method", "id",
"instPath", "dir")),
+ ("selectlangpackages", selectLanguageSupportGroups, ("id",)),
("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")),