From 9f33a9778c6d11f1949a762cc5bffe89e669506d Mon Sep 17 00:00:00 2001 From: Mike Fulbright Date: Fri, 18 Jan 2002 21:08:32 +0000 Subject: move postaction and videocard configuration --- dispatch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dispatch.py') 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", ()) ] -- cgit