summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2000-04-19 23:09:50 +0000
committerErik Troan <ewt@redhat.com>2000-04-19 23:09:50 +0000
commit95e4b1b5285c7d2b9ed26981afa483749337a84f (patch)
tree7620c7530eaf6e78e8e4c5c0fde76cc436437ef8
parent720bab9828b91d769937b518de2b9378e407bf5d (diff)
downloadanaconda-95e4b1b5285c7d2b9ed26981afa483749337a84f.tar.gz
anaconda-95e4b1b5285c7d2b9ed26981afa483749337a84f.tar.xz
anaconda-95e4b1b5285c7d2b9ed26981afa483749337a84f.zip
added stubbed postAction(), removed setPostScript()
-rw-r--r--installclass.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/installclass.py b/installclass.py
index 5698c5b35..14aa94aa4 100644
--- a/installclass.py
+++ b/installclass.py
@@ -20,6 +20,9 @@ class InstallClass:
def setMouseType(self, name, device = None, emulateThreeButtons = 0):
self.mouse = (name, device, emulateThreeButtons)
+ def postAction(self, rootPath, serial):
+ pass
+
def setLiloInformation(self, location, linear = 1, appendLine = None):
# this throws an exception if there is a problem
["mbr", "partition", None].index(location)
@@ -181,10 +184,6 @@ class InstallClass:
def setKeyboard(self, kb):
self.keyboard = kb
- def setPostScript(self, postScript, inChroot = 1):
- self.postScript = postScript
- self.postInChroot = inChroot
-
def __init__(self):
self.skipSteps = {}
self.hostname = None