summaryrefslogtreecommitdiffstats
path: root/dispatch.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2006-01-26 02:25:16 +0000
committerJeremy Katz <katzj@redhat.com>2006-01-26 02:25:16 +0000
commit06cffdaa16e9b3b07a65e105587a5c058a66d148 (patch)
treed4929040bcba3c6c1b9e7b84c22de13246e6f8d3 /dispatch.py
parent3c6a7a68331329a8cb65f76b7ef6852f9f097238 (diff)
downloadanaconda-06cffdaa16e9b3b07a65e105587a5c058a66d148.tar.gz
anaconda-06cffdaa16e9b3b07a65e105587a5c058a66d148.tar.xz
anaconda-06cffdaa16e9b3b07a65e105587a5c058a66d148.zip
2006-01-25 Jeremy Katz <katzj@redhat.com>
* kickstart.py (Kickstart.setSteps): Don't show tasksel if packages are selected. * iw/task_gui.py: Simple task selection UI so we don't just drop people into the complicated group selection screen. * ui/tasksel.glade: Add glade file for task selection UI * textw/task_text.py: Text version * dispatch.py (installSteps): Add tasksel step * installclass.py (BaseInstallClass.setSteps): Likewise. * gui.py (stepToClass): Likewise. * text.py (stepToClasses): Likewise.
Diffstat (limited to 'dispatch.py')
-rw-r--r--dispatch.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/dispatch.py b/dispatch.py
index b193ccc43..923fc2543 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -3,12 +3,12 @@
#
# Erik Troan <ewt@redhat.com>
#
-# Copyright 2001-2002 Red Hat, Inc.
+# Copyright 2001-2006 Red Hat, Inc.
#
# This software may be freely redistributed under the terms of the GNU
-# library public license.
+# general public license.
#
-# You should have received a copy of the GNU Library Public License
+# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
@@ -100,9 +100,9 @@ installSteps = [
("accounts", ("intf", "id.rootPassword")),
("reposetup", doRepoSetup, ("backend","intf", "id", "instPath")),
("basepkgsel", doBasePackageSelect, ("backend","id.instClass")),
+ ("tasksel", ("intf", "backend", "dispatch")),
("group-selection", ("backend", "intf")),
("postselection", doPostSelection, ("backend", "intf", "id", "instPath")),
- #("desktopchoice", ("intf", "id.instClass", "dispatch", "id.grpset")),
#("selectlangpackages", selectLanguageSupportGroups, ("id.grpset","id.instLanguage")),
#("fixupconditionals", fixupConditionals, ("id.grpset",)),
("confirminstall", ("intf", "id",)),