summaryrefslogtreecommitdiffstats
path: root/dispatch.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 /dispatch.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 'dispatch.py')
-rw-r--r--dispatch.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/dispatch.py b/dispatch.py
index 841c3f2c7..3ccd7433b 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -59,6 +59,9 @@ log = logging.getLogger("anaconda")
# in the second case, the function is called directly from the dispatcher
installSteps = [
+ ("networkdevicecheck", networkDeviceCheck, ("id.network", "dispatch")),
+ ("network", ("id.network", "dir", "intf", "id")),
+
("welcome", ()),
("betanag", betaNagScreen, ("intf", "dir")),
("language", ("intf", "id.instLanguage")),
@@ -120,7 +123,7 @@ installSteps = [
("preinstallconfig", doPreInstall, ("backend", "intf", "id", "instPath", "dir")),
("installpackages", doInstall, ("backend", "intf", "id", "instPath")),
("postinstallconfig", doPostInstall, ("backend", "intf", "id", "instPath")),
- ("writeconfig", writeConfiguration, ("backend",)),
+ ("writeconfig", writeConfiguration, ("backend", "id", "instPath")),
("firstboot", firstbootConfiguration, ("id", "instPath")),
("instbootloader", writeBootloader, ("intf", "instPath", "id.fsset",
"id.bootloader", "id.instLanguage",