summaryrefslogtreecommitdiffstats
path: root/installclass.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2007-12-05 11:22:56 -0500
committerChris Lumens <clumens@redhat.com>2007-12-05 11:22:56 -0500
commit62422eb0857472f90bde2b3b1b0e1dd5dfda4d97 (patch)
treec8cf59ec3ac4b411be91b4aa5e3ef6c1cf1dc155 /installclass.py
parent7c6cc6cbaf10ca6ecbd7a1a9980383491b2ea2bf (diff)
downloadanaconda-62422eb0857472f90bde2b3b1b0e1dd5dfda4d97.tar.gz
anaconda-62422eb0857472f90bde2b3b1b0e1dd5dfda4d97.tar.xz
anaconda-62422eb0857472f90bde2b3b1b0e1dd5dfda4d97.zip
Fix up the livecd to no longer use an InstallMethod.
Diffstat (limited to 'installclass.py')
-rw-r--r--installclass.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/installclass.py b/installclass.py
index 7efd6b9b9..bfc39c4ea 100644
--- a/installclass.py
+++ b/installclass.py
@@ -81,6 +81,9 @@ class BaseInstallClass(object):
return _(self._description) % self._descriptionFields
description = property(_get_description)
+ def postAction(self, anaconda):
+ anaconda.backend.postAction(anaconda)
+
def setBootloader(self, id, location=None, forceLBA=0, password=None,
md5pass=None, appendLine="", driveorder = [],
timeout=None):