summaryrefslogtreecommitdiffstats
path: root/dispatch.py
diff options
context:
space:
mode:
authorPaul Nasrat <pnasrat@redhat.com>2005-09-23 12:58:09 +0000
committerPaul Nasrat <pnasrat@redhat.com>2005-09-23 12:58:09 +0000
commit3a05ce60eb1380a3a7203388ff63847fa8ab2b60 (patch)
tree80ebe2c02e627135079421e7026461aba800517a /dispatch.py
parent5e0fad4f874a3f4e93f6eb4ff39596a3b36c5d64 (diff)
downloadanaconda-3a05ce60eb1380a3a7203388ff63847fa8ab2b60.tar.gz
anaconda-3a05ce60eb1380a3a7203388ff63847fa8ab2b60.tar.xz
anaconda-3a05ce60eb1380a3a7203388ff63847fa8ab2b60.zip
Move package selection earlier
Diffstat (limited to 'dispatch.py')
-rw-r--r--dispatch.py11
1 files changed, 3 insertions, 8 deletions
diff --git a/dispatch.py b/dispatch.py
index f64e89c30..0b3872d4c 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -99,8 +99,9 @@ installSteps = [
("network", ("id.network", "dir", "intf", "id")),
("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")),
+ ("group-selection", ("backend", "intf")),
+ ("postselection", doPostSelection, ("backend", "intf", "id", "instPath")),
#("desktopchoice", ("intf", "id.instClass", "dispatch", "id.grpset")),
#("findpackages", upgradeFindPackages, ("intf", "method", "id", "instPath", "dir")),
#("selectlangpackages", selectLanguageSupportGroups, ("id.grpset","id.instLanguage")),
@@ -125,12 +126,6 @@ installSteps = [
"instPath")),
("setuptime", setupTimezone, ("id.timezone", "id.upgrade", "instPath",
"dir")),
-
- # FIXME: package selection should be done before we create filesystems
- ("preselection", doPreSelection, ("backend","intf", "id", "instPath")),
- ("group-selection", ("backend", "intf")),
- ("postselection", doPostSelection, ("backend", "intf", "id", "instPath")),
-
("preinstallconfig", doPreInstall, ("backend", "intf", "id", "instPath", "dir")),
("installpackages", doInstall, ("backend", "intf", "id", "instPath")),
("postinstallconfig", doPostInstall, ("backend", "intf", "id", "instPath")),