summaryrefslogtreecommitdiffstats
path: root/installclass.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2005-09-16 21:16:28 +0000
committerJeremy Katz <katzj@redhat.com>2005-09-16 21:16:28 +0000
commit10f211fb9f37aff25d1dc592c9796cd9fe8e179e (patch)
tree0d879e3404cc0e1ba0e704d1260739ceb052dadc /installclass.py
parentb6013ec3704e05f111d7b3ac8f1851515898f6c5 (diff)
downloadanaconda-10f211fb9f37aff25d1dc592c9796cd9fe8e179e.tar.gz
anaconda-10f211fb9f37aff25d1dc592c9796cd9fe8e179e.tar.xz
anaconda-10f211fb9f37aff25d1dc592c9796cd9fe8e179e.zip
2005-09-16 Jeremy Katz <katzj@redhat.com>
* yuminstall.py (AnacondaYum.__init__): Little bit of clean-up, remove some unused code. (YumBackend.__init__): Create config file sooner. (YumBackend.doPreSelection): Get base install class package selection working in the short-term. (YumBackend): Implement groupExists, selectGroup, selectPackage and deselectPackage. * kickstart.py (AnacondaKSParser.handleCommand): Fix traceback. (Kickstart.setPackageSelection): Implement basic package selection. (Kickstart.setGroupSelection): ... and group selection. * installclass.py (BaseInstallClass.setPackageSelection): Use backend. (BaseInstallClass.setGroupSelection): Likewise. * dispatch.py (installSteps): Some comments to move stuff around, re-instate post action step. * backend.py (AnacondaBackend): Take instpath argument. Stub in functions for basic package/group selection. * anaconda: Pass rootPath into backend.
Diffstat (limited to 'installclass.py')
-rw-r--r--installclass.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/installclass.py b/installclass.py
index e41450f84..26631d62e 100644
--- a/installclass.py
+++ b/installclass.py
@@ -208,14 +208,10 @@ class BaseInstallClass:
dispatch.skipStep("handleX11pkgs", permanent = 1)
dispatch.skipStep("writexconfig", permanent = 1)
- # This is called after the hdlist is read in.
- def setPackageSelection(self, hdlist, intf):
+ def setPackageSelection(self, backend):
pass
- # This is called after the comps is read in (after setPackageSelection()).
- # It can both select groups, change the default selection for groups, and
- # change which groups are hidden.
- def setGroupSelection(self, grpset, intf):
+ def setGroupSelection(self, backend):
pass
def setZFCP(self, id, devnum, scsiid, wwpn, scsilun, fcplun):