summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2002-08-23 05:01:05 +0000
committerMike Fulbright <msf@redhat.com>2002-08-23 05:01:05 +0000
commit44f6611e0b20bc48e37da9fae5393c5f287c3602 (patch)
tree3e01cce1d157b91575a6206cd98171d55dbce983
parent86339f281d745c4ccfa078d97ae2d727d8b50525 (diff)
downloadanaconda-44f6611e0b20bc48e37da9fae5393c5f287c3602.tar.gz
anaconda-44f6611e0b20bc48e37da9fae5393c5f287c3602.tar.xz
anaconda-44f6611e0b20bc48e37da9fae5393c5f287c3602.zip
add string representing method used for installation
-rw-r--r--instdata.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/instdata.py b/instdata.py
index 6e27ea34a..0bff5fc60 100644
--- a/instdata.py
+++ b/instdata.py
@@ -158,7 +158,7 @@ class InstallData:
f.write("\n%post\n")
self.accounts.writeKScommands(f, self.auth)
- def __init__(self, extraModules, floppyDevice, configFileData):
+ def __init__(self, extraModules, floppyDevice, configFileData, methodstr):
self.instLanguage = language.InstallTimeLanguage()
self.keyboard = keyboard.Keyboard()
self.tmpData = configFileData
@@ -174,5 +174,6 @@ class InstallData:
# FIXME: this is a major hack to get the comps package installed
self.compspkg = None
-
+
+ self.methodstr = methodstr
self.reset()