summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--dispatch.py2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 5e9d72ab3..ff4143dce 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,9 @@
* backend.py (AnacondaBackend.doPostInstall): Copy driver disk
contents to /root after installation (#289751).
+ * dispatch.py (installSteps): Write out anaconda-ks.cfg earlier
+ (#292571).
+
2007-09-17 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version.
diff --git a/dispatch.py b/dispatch.py
index 07f1adbd4..dbe028f98 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -99,13 +99,13 @@ installSteps = [
("migratefilesystems", doMigrateFilesystems, ),
("setuptime", setupTimezone, ),
("preinstallconfig", doPreInstall, ),
+ ("writeksconfig", writeKSConfiguration, ),
("installpackages", doInstall, ),
("postinstallconfig", doPostInstall, ),
("writeconfig", writeConfiguration, ),
("firstboot", firstbootConfiguration, ),
("instbootloader", writeBootloader, ),
("writexconfig", writeXConfiguration, ),
- ("writeksconfig", writeKSConfiguration, ),
("writeregkey", writeRegKey, ),
("setfilecon", setFileCons, ),
("copylogs", copyAnacondaLogs, ),