From 463fb6a2083890e09dd3675ad7c51146ec68c0d8 Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Wed, 10 Jul 2002 20:15:20 +0000 Subject: add choose your own desktop step for workstation. msf is going to write screen --- dispatch.py | 1 + installclasses/workstation.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/dispatch.py b/dispatch.py index d2ab04d88..3ceef8720 100644 --- a/dispatch.py +++ b/dispatch.py @@ -97,6 +97,7 @@ installSteps = [ ("accounts", ("id.rootPassword", "id.accounts")), ("authentication", ("id.auth",)), ("readcomps", readPackages, ("intf", "method", "id")), + ("chooseyourowndesktop", ("intf", "dispatch")), ("findpackages", upgradeFindPackages, ("intf", "method", "id", "instPath", "dir")), ("package-selection", ("id.comps", "dispatch")), diff --git a/installclasses/workstation.py b/installclasses/workstation.py index a049dcb9a..c590b903f 100644 --- a/installclasses/workstation.py +++ b/installclasses/workstation.py @@ -44,6 +44,8 @@ class InstallClass(BaseInstallClass): BaseInstallClass.setSteps(self, dispatch); dispatch.skipStep("authentication") + dispatch.skipStep("chooseyourowndesktop", skip = 0) + def setGroupSelection(self, comps): BaseInstallClass.__init__(self, comps) self.showGroups(comps, [ "KDE Desktop Environment", -- cgit