summaryrefslogtreecommitdiffstats
path: root/dispatch.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2002-01-16 20:45:50 +0000
committerMike Fulbright <msf@redhat.com>2002-01-16 20:45:50 +0000
commit8758b1766a90bae56f8c3b4197605154fa363202 (patch)
tree26bc46f2a305bf79064242b7ba480f68eb693518 /dispatch.py
parent40cc670f4193d152b5f2f628c685e6d9b06f92d8 (diff)
downloadanaconda-8758b1766a90bae56f8c3b4197605154fa363202.tar.gz
anaconda-8758b1766a90bae56f8c3b4197605154fa363202.tar.xz
anaconda-8758b1766a90bae56f8c3b4197605154fa363202.zip
move post to really be post-install
Diffstat (limited to 'dispatch.py')
-rw-r--r--dispatch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dispatch.py b/dispatch.py
index 831d007ae..5b56fd2f8 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -120,7 +120,6 @@ 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")),
@@ -129,6 +128,7 @@ installSteps = [
"id.desktop", "id.comps")),
("writexconfig", writeXConfiguration, ("id", "instPath")),
("writeksconfig", writeKSConfiguration, ("id", "instPath")),
+ ("dopostaction", doPostAction, ("id", "instPath")),
("complete", ()),
("reconfigcomplete", ())
]