diff options
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 |