diff options
author | Chris Lumens <clumens@redhat.com> | 2007-12-05 11:22:56 -0500 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2007-12-05 11:22:56 -0500 |
commit | 62422eb0857472f90bde2b3b1b0e1dd5dfda4d97 (patch) | |
tree | c8cf59ec3ac4b411be91b4aa5e3ef6c1cf1dc155 /backend.py | |
parent | 7c6cc6cbaf10ca6ecbd7a1a9980383491b2ea2bf (diff) | |
download | anaconda-62422eb0857472f90bde2b3b1b0e1dd5dfda4d97.tar.gz anaconda-62422eb0857472f90bde2b3b1b0e1dd5dfda4d97.tar.xz anaconda-62422eb0857472f90bde2b3b1b0e1dd5dfda4d97.zip |
Fix up the livecd to no longer use an InstallMethod.
Diffstat (limited to 'backend.py')
-rw-r--r-- | backend.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/backend.py b/backend.py index 7632f0de6..a1e11c072 100644 --- a/backend.py +++ b/backend.py @@ -31,11 +31,11 @@ log = logging.getLogger("anaconda") class AnacondaBackend: - def __init__(self, instPath): + def __init__(self, anaconda): """Abstract backend class all backends should inherit from this @param instPath: root path for the installation to occur""" - self.instPath = instPath + self.instPath = anaconda.rootPath self.instLog = None self.modeText = "" @@ -47,6 +47,9 @@ class AnacondaBackend: # FIXME: we should handle this a little more elegantly self.skipFormatRoot = False + def postAction(self, anaconda): + pass + def doPreSelection(self, intf, id, instPath): pass |