summaryrefslogtreecommitdiffstats
path: root/dispatch.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2006-11-10 21:01:01 +0000
committerChris Lumens <clumens@redhat.com>2006-11-10 21:01:01 +0000
commit6b06619d4b4ae77e5f6a236e6d6c6fe7972451f3 (patch)
tree6db30a7395400b140582dd3c54907c5b0caae12e /dispatch.py
parent8cabe08f8326a1a4071ebd1e0996950ec98517e1 (diff)
downloadanaconda-6b06619d4b4ae77e5f6a236e6d6c6fe7972451f3.tar.gz
anaconda-6b06619d4b4ae77e5f6a236e6d6c6fe7972451f3.tar.xz
anaconda-6b06619d4b4ae77e5f6a236e6d6c6fe7972451f3.zip
Reverse order of postaction and methodcomplete so source is unmounted on image
installs before kickstart %post scripts are run (#214677).
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 91487bc89..fac79ef9a 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -106,8 +106,8 @@ installSteps = [
("writeksconfig", writeKSConfiguration, ),
("setfilecon", setFileCons, ),
("copylogs", copyAnacondaLogs, ),
- ("dopostaction", doPostAction, ),
("methodcomplete", doMethodComplete, ),
+ ("dopostaction", doPostAction, ),
("complete", ),
]