summaryrefslogtreecommitdiffstats
path: root/installclass.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-12-21 13:50:12 -0500
committerChris Lumens <clumens@redhat.com>2010-02-04 15:07:56 -0500
commit48bf7f2c03d5512c287d240716c8580946566674 (patch)
tree166df1c3e1f96bdfe24e32a07f6b5d6a7bcf61c0 /installclass.py
parent36be32c25452a08b5950f991d61013b91e9e5771 (diff)
downloadanaconda-48bf7f2c03d5512c287d240716c8580946566674.tar.gz
anaconda-48bf7f2c03d5512c287d240716c8580946566674.tar.xz
anaconda-48bf7f2c03d5512c287d240716c8580946566674.zip
Nothing uses InstallData anymore, so it can completely be removed.
This also changes instClass.setInstallData to instClass.configure, which makes a little more sense in this post-instdata world.
Diffstat (limited to 'installclass.py')
-rw-r--r--installclass.py9
1 files changed, 1 insertions, 8 deletions
diff --git a/installclass.py b/installclass.py
index cc44111fd..6ccb5f077 100644
--- a/installclass.py
+++ b/installclass.py
@@ -28,8 +28,6 @@ import language
import imputil
import types
-from instdata import InstallData
-
from constants import *
from meh.filer import *
from product import *
@@ -70,9 +68,6 @@ class BaseInstallClass(object):
# own toplevel category otherwise
parentClass = ( _("Install on System"), "install.png" )
- # we can use a different install data class
- installDataClass = InstallData
-
def _get_description(self):
return _(self._description) % self._descriptionFields
description = property(_get_description)
@@ -197,9 +192,7 @@ class BaseInstallClass(object):
storage.autoPartitionRequests = autorequests
-
- def setInstallData(self, anaconda):
- anaconda.id.reset()
+ def configure(self, anaconda):
anaconda.bootloader.timeout = self.bootloaderTimeoutDefault
def versionMatches(self, oldver):