From 63226bceb21c16d662a78e85e4845309fdc91bfb Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Tue, 20 Sep 2005 20:43:49 +0000 Subject: 2005-09-20 Jeremy Katz * iw/simple_pkgselect.py: Simple group selection UI... * textw/simple_pkgselect_text.py: And the same for text mode * yuminstall.py (YumBackend): Some hacks for simple group selection UI. * dispatch.py (installSteps): Add simple group selection step. * gui.py (stepToClass): Likewise. * text.py (stepToClasses): Likewise. * installclass.py (BaseInstallClass.setSteps): Likewise. --- dispatch.py | 1 + 1 file changed, 1 insertion(+) (limited to 'dispatch.py') diff --git a/dispatch.py b/dispatch.py index 3d9112fd2..f64e89c30 100644 --- a/dispatch.py +++ b/dispatch.py @@ -128,6 +128,7 @@ installSteps = [ # FIXME: package selection should be done before we create filesystems ("preselection", doPreSelection, ("backend","intf", "id", "instPath")), + ("group-selection", ("backend", "intf")), ("postselection", doPostSelection, ("backend", "intf", "id", "instPath")), ("preinstallconfig", doPreInstall, ("backend", "intf", "id", "instPath", "dir")), -- cgit