summaryrefslogtreecommitdiffstats
path: root/backend.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2006-02-07 02:21:54 +0000
committerJeremy Katz <katzj@redhat.com>2006-02-07 02:21:54 +0000
commit01a8e3bb8151b9dde37dca7977fc475251977f4d (patch)
tree007dd0a33e9a1f46b55d2e8928c097bd8c9c80f1 /backend.py
parentcd5dce638231092094366632593bd3ea9321b44a (diff)
downloadanaconda-01a8e3bb8151b9dde37dca7977fc475251977f4d.tar.gz
anaconda-01a8e3bb8151b9dde37dca7977fc475251977f4d.tar.xz
anaconda-01a8e3bb8151b9dde37dca7977fc475251977f4d.zip
2006-02-06 Jeremy Katz <katzj@redhat.com>
* backend.py (writeConfiguration): Include writing out instdata so that things like root password, etc all work again (#180310) * dispatch.py (installSteps): Pass id and instPath to writeconfig again
Diffstat (limited to 'backend.py')
-rw-r--r--backend.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/backend.py b/backend.py
index d1b48193f..52d644720 100644
--- a/backend.py
+++ b/backend.py
@@ -164,8 +164,9 @@ def doBasePackageSelect(backend, instClass):
instClass.setPackageSelection(backend)
instClass.setGroupSelection(backend)
-def writeConfiguration(backend):
+def writeConfiguration(backend, id, instPath):
log.info("Writing main configuration")
if not flags.test:
backend.writeConfiguration()
+ id.write(instPath)