summaryrefslogtreecommitdiffstats
path: root/dispatch.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2002-01-18 21:08:32 +0000
committerMike Fulbright <msf@redhat.com>2002-01-18 21:08:32 +0000
commit9f33a9778c6d11f1949a762cc5bffe89e669506d (patch)
tree9326caefb4eeb63bb2dddca126ee10981c7c32d5 /dispatch.py
parent28b0aef945d29f2fb0739b8f8678839201891da7 (diff)
downloadanaconda-9f33a9778c6d11f1949a762cc5bffe89e669506d.tar.gz
anaconda-9f33a9778c6d11f1949a762cc5bffe89e669506d.tar.xz
anaconda-9f33a9778c6d11f1949a762cc5bffe89e669506d.zip
move postaction and videocard configuration
Diffstat (limited to 'dispatch.py')
-rw-r--r--dispatch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/dispatch.py b/dispatch.py
index 5b56fd2f8..4014274c1 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -102,7 +102,6 @@ installSteps = [
("checkdeps", checkDependencies, ("dir", "intf", "dispatch",
"id", "instPath")),
("dependencies", ("id.comps", "id.dependencies")),
- ("videocard", ("dispatch", "id.xconfig", "id.videocard", "intf")),
("confirminstall", ()),
("confirmupgrade", ()),
("install", ("dir", "intf", "id")),
@@ -120,15 +119,16 @@ installSteps = [
("instbootloader", writeBootloader, ("intf", "instPath", "id.fsset",
"id.bootloader", "id.langSupport",
"id.comps")),
+ ("dopostaction", doPostAction, ("id", "instPath")),
("bootdisk", ("dir", "dispatch", "id.fsset")),
("makebootdisk", makeBootdisk, ("intf", "id.floppyDevice",
"id.hdList", "instPath")),
+ ("videocard", ("dispatch", "id.xconfig", "id.videocard", "intf")),
("monitor", ("id.xconfig", "id.monitor")),
("xcustom", ("id.xconfig", "id.monitor", "id.videocard",
"id.desktop", "id.comps")),
("writexconfig", writeXConfiguration, ("id", "instPath")),
("writeksconfig", writeKSConfiguration, ("id", "instPath")),
- ("dopostaction", doPostAction, ("id", "instPath")),
("complete", ()),
("reconfigcomplete", ())
]