summaryrefslogtreecommitdiffstats
path: root/pyanaconda/installclass.py
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2013-01-08 14:39:56 -0600
committerDavid Lehman <dlehman@redhat.com>2013-01-08 15:44:18 -0600
commite2db119e6cd874903278fee14b2701f883d4a120 (patch)
tree81f8c95eb88a8fd090a3c9697e7a0389f01f3a35 /pyanaconda/installclass.py
parent8cab173f1b684499328ef4383351901126ecc96a (diff)
downloadanaconda-e2db119e6cd874903278fee14b2701f883d4a120.tar.gz
anaconda-e2db119e6cd874903278fee14b2701f883d4a120.tar.xz
anaconda-e2db119e6cd874903278fee14b2701f883d4a120.zip
Remove some modules obsoleted by the packaging module.
Diffstat (limited to 'pyanaconda/installclass.py')
-rw-r--r--pyanaconda/installclass.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/pyanaconda/installclass.py b/pyanaconda/installclass.py
index 59dfea0a3..d2db13fd7 100644
--- a/pyanaconda/installclass.py
+++ b/pyanaconda/installclass.py
@@ -78,9 +78,6 @@ class BaseInstallClass(object):
self.name)
return self._l10n_domain
- def postAction(self, anaconda):
- anaconda.backend.postAction(anaconda)
-
# modifies the uri from installmethod.getMethodUri() to take into
# account any installclass specific things including multiple base
# repositories. takes a string or list of strings, returns a dict
@@ -94,10 +91,6 @@ class BaseInstallClass(object):
def setPackageSelection(self, anaconda):
pass
- def setGroupSelection(self, anaconda):
- grps = anaconda.backend.getDefaultGroups(anaconda)
- map(lambda x: anaconda.backend.selectGroup(x), grps)
-
def getBackend(self):
# The default is to return None here, which means anaconda should
# use live or yum (whichever can be detected). This method is