diff options
Diffstat (limited to 'dispatch.py')
-rw-r--r-- | dispatch.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/dispatch.py b/dispatch.py index 80dec2f7a..c9446ccc0 100644 --- a/dispatch.py +++ b/dispatch.py @@ -108,14 +108,14 @@ installSteps = [ ("desktopchoice", ("intf", "id.instClass", "dispatch")), ("findpackages", upgradeFindPackages, ("intf", "method", "id", "instPath", "dir")), - ("selectlangpackages", selectLanguageSupportGroups, ("id.comps","id.langSupport")), - ("package-selection", ("id.comps", "id.langSupport", "id.instClass", "dispatch")), - ("indivpackage", ("id.comps", "id.hdList")), + ("selectlangpackages", selectLanguageSupportGroups, ("id.grpset","id.langSupport")), + ("package-selection", ("id.grpset", "id.langSupport", "id.instClass", "dispatch")), + ("indivpackage", ("id.grpset")), ("handleX11pkgs", handleX11Packages, ("dir", "intf", "dispatch", "id", "instPath")), ("checkdeps", checkDependencies, ("dir", "intf", "dispatch", "id", "instPath")), - ("dependencies", ("id.comps", "id.dependencies")), + ("dependencies", ("id.grpset", "id.dependencies")), ("confirminstall", ()), ("confirmupgrade", ()), ("install", ("dir", "intf", "id")), @@ -135,10 +135,10 @@ installSteps = [ ("firstboot", firstbootConfiguration, ("id", "instPath")), ("instbootloader", writeBootloader, ("intf", "instPath", "id.fsset", "id.bootloader", "id.langSupport", - "id.comps")), + "id.grpset")), ("bootdisk", ("dir", "dispatch", "id.fsset")), ("makebootdisk", makeBootdisk, ("intf", "dir", "id.floppyDevice", - "id.hdList", "instPath", "id.bootloader")), + "id.grpset", "instPath", "id.bootloader")), # # we dont use videocard and xcustom currently, they are still listed as # steps but are not listed in the list of install steps in installclass.py @@ -149,7 +149,7 @@ installSteps = [ # failed. Needs to be here if we enable videocard and xcustom again. # ("monitor", ("id.xsetup", "id.monitor", "intf")), ("xcustom", ("id.xsetup", "id.monitor", "id.videocard", - "id.desktop", "id.comps", "id.instClass", "instPath")), + "id.desktop", "id.grpset", "id.instClass", "instPath")), ("writexconfig", writeXConfiguration, ("id", "instPath")), ("writeksconfig", writeKSConfiguration, ("id", "instPath")), ("dopostaction", doPostAction, ("id", "instPath")), |