summaryrefslogtreecommitdiffstats
path: root/installclasses
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-01-09 22:37:07 +0000
committerJeremy Katz <katzj@redhat.com>2003-01-09 22:37:07 +0000
commit2a286b0315c8a5f232e979078cca0c9036f1e0fc (patch)
tree2a91344e79c4006f563368ceac4681ee3e7c9ca4 /installclasses
parent95bde0a8072f4c908ecc9681b3f0768aaec48104 (diff)
downloadanaconda-2a286b0315c8a5f232e979078cca0c9036f1e0fc.tar.gz
anaconda-2a286b0315c8a5f232e979078cca0c9036f1e0fc.tar.xz
anaconda-2a286b0315c8a5f232e979078cca0c9036f1e0fc.zip
oops, update for new prototype (noticed by mikem)
Diffstat (limited to 'installclasses')
-rw-r--r--installclasses/personal_desktop.py2
-rw-r--r--installclasses/server.py2
-rw-r--r--installclasses/workstation.py4
3 files changed, 4 insertions, 4 deletions
diff --git a/installclasses/personal_desktop.py b/installclasses/personal_desktop.py
index cd07a3818..71d401d91 100644
--- a/installclasses/personal_desktop.py
+++ b/installclasses/personal_desktop.py
@@ -25,7 +25,7 @@ class InstallClass(BaseInstallClass):
dispatch.skipStep("desktopchoice", skip = 0)
dispatch.skipStep("package-selection", skip = 1)
- def setGroupSelection(self, comps):
+ def setGroupSelection(self, comps, intf):
BaseInstallClass.__init__(self, comps)
for comp in comps.comps:
diff --git a/installclasses/server.py b/installclasses/server.py
index dca925788..f52562030 100644
--- a/installclasses/server.py
+++ b/installclasses/server.py
@@ -22,7 +22,7 @@ class InstallClass(BaseInstallClass):
BaseInstallClass.setSteps(self, dispatch);
dispatch.skipStep("authentication")
- def setGroupSelection(self, comps):
+ def setGroupSelection(self, comps, intf):
BaseInstallClass.__init__(self, comps)
for comp in comps.comps:
diff --git a/installclasses/workstation.py b/installclasses/workstation.py
index f3d86c4dc..682a9569c 100644
--- a/installclasses/workstation.py
+++ b/installclasses/workstation.py
@@ -12,8 +12,8 @@ class InstallClass(personal_desktop.InstallClass):
sortPriority = 2
- def setGroupSelection(self, comps):
- personal_desktop.InstallClass.setGroupSelection(self, comps)
+ def setGroupSelection(self, comps, intf):
+ personal_desktop.InstallClass.setGroupSelection(self, comps, intf)
comps["Emacs"].select()
comps["GNOME Software Development"].select()
comps["X Software Development"].select()