diff options
author | Chris Lumens <clumens@redhat.com> | 2006-05-04 15:27:30 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2006-05-04 15:27:30 +0000 |
commit | b15bb5d63e411f94476c7f064fec70e7c4209803 (patch) | |
tree | 39e58df2a3b9fe742b1843e9830254fa4f2a57f2 /installclasses/rhel_es.py | |
parent | 4599e0880fa17eedb9f733ec3531395bb2910990 (diff) | |
download | anaconda-b15bb5d63e411f94476c7f064fec70e7c4209803.tar.gz anaconda-b15bb5d63e411f94476c7f064fec70e7c4209803.tar.xz anaconda-b15bb5d63e411f94476c7f064fec70e7c4209803.zip |
Finish making non-UI steps pass around the anaconda object.
Diffstat (limited to 'installclasses/rhel_es.py')
-rw-r--r-- | installclasses/rhel_es.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/installclasses/rhel_es.py b/installclasses/rhel_es.py index d5ae444e2..07ffe1d7d 100644 --- a/installclasses/rhel_es.py +++ b/installclasses/rhel_es.py @@ -24,18 +24,18 @@ class InstallClass(BaseInstallClass): dispatch.skipStep("desktopchoice", skip = 0) dispatch.skipStep("package-selection", skip = 1) - def setGroupSelection(self, grpset, intf): - BaseInstallClass.__init__(self, grpset) + def setGroupSelection(self, anaconda): + BaseInstallClass.__init__(self, anaconda.backend) - grpset.unselectAll() - grpset.selectGroup("server", asMeta = 1) - grpset.selectGroup("base-x") - grpset.selectGroup("gnome-desktop") - grpset.selectGroup("compat-arch-support", asMeta = 1, missingOk = 1) + anaconda.backend.unselectAll() + anaconda.backend.selectGroup("server", asMeta = 1) + anaconda.backend.selectGroup("base-x") + anaconda.backend.selectGroup("gnome-desktop") + anaconda.backend.selectGroup("compat-arch-support", asMeta = 1, missingOk = 1) - def setInstallData(self, id): - BaseInstallClass.setInstallData(self, id) - BaseInstallClass.setDefaultPartitioning(self, id.partitions, + def setInstallData(self, anaconda): + BaseInstallClass.setInstallData(self, anaconda) + BaseInstallClass.setDefaultPartitioning(self, anaconda.id.partitions, CLEARPART_TYPE_ALL) def __init__(self, expert): |