summaryrefslogtreecommitdiffstats
path: root/dispatch.py
diff options
context:
space:
mode:
authorPaul Nasrat <pnasrat@redhat.com>2005-08-31 14:54:47 +0000
committerPaul Nasrat <pnasrat@redhat.com>2005-08-31 14:54:47 +0000
commit374a06cd523bc57afab8a3532a99258036d83546 (patch)
tree29e1cb884eb4f5f3bfe7474c542ab25c364dc714 /dispatch.py
parent1fc6e0b4ce32474b078d253fe192715a25a7745a (diff)
downloadanaconda-374a06cd523bc57afab8a3532a99258036d83546.tar.gz
anaconda-374a06cd523bc57afab8a3532a99258036d83546.tar.xz
anaconda-374a06cd523bc57afab8a3532a99258036d83546.zip
Backend work
Diffstat (limited to 'dispatch.py')
-rw-r--r--dispatch.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/dispatch.py b/dispatch.py
index 14cca8694..84026d9fc 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -103,7 +103,7 @@ installSteps = [
("timezone", ("id.instLanguage", "id.timezone")),
("accounts", ("intf", "id.rootPassword")),
#XXX: factor to backend
- ("preselection", doPreSelection, ("backend","intf", "id", "instPath")),
+ #("preselection", doPreSelection, ("backend","intf", "id", "instPath")),
#("desktopchoice", ("intf", "id.instClass", "dispatch", "id.grpset")),
#("findpackages", upgradeFindPackages, ("intf", "method", "id", "instPath", "dir")),
#("selectlangpackages", selectLanguageSupportGroups, ("id.grpset","id.instLanguage")),
@@ -113,7 +113,7 @@ installSteps = [
# "id", "instPath")),
#("handlemiscpkgs", handleMiscPackages, ("intf", "id", "dir")),
#("fixupconditionals", fixupConditionals, ("id.grpset",)),
- ("postselection", doPostSelection, ("backend", "intf", "id", "instPath")),
+ #("postselection", doPostSelection, ("backend", "intf", "id", "instPath")),
#XXX: factor to backend
#("checkdeps", checkDependencies, ("dir", "intf", "dispatch", "id", "instPath")),
#("dependencies", ("id.grpset", "id.dependencies")),
@@ -128,7 +128,9 @@ installSteps = [
"instPath")),
("setuptime", setupTimezone, ("id.timezone", "id.upgrade", "instPath",
"dir")),
+ ("preselection", doPreSelection, ("backend","intf", "id", "instPath")),
("preinstallconfig", doPreInstall, ("backend", "intf", "id", "instPath", "dir")),
+ ("postselection", doPostSelection, ("backend", "intf", "id", "instPath")),
("installpackages", doInstall, ("backend", "intf", "id", "instPath")),
#("postinstallconfig", backend.doPostInstall, ("method", "id", "intf", "instPath")),
("writeconfig", writeConfiguration, ("id", "instPath")),