diff options
author | Mike Fulbright <msf@redhat.com> | 2002-07-10 23:43:17 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2002-07-10 23:43:17 +0000 |
commit | a53262440fd42f58d1147c0459e20a1cf9427572 (patch) | |
tree | 1025acc5452bec0330a092c06a9e6362ebbd02ab /dispatch.py | |
parent | c0ffcafbff28be2b55c66b77f6977176512b2e17 (diff) | |
download | anaconda-a53262440fd42f58d1147c0459e20a1cf9427572.tar.gz anaconda-a53262440fd42f58d1147c0459e20a1cf9427572.tar.xz anaconda-a53262440fd42f58d1147c0459e20a1cf9427572.zip |
add workstation customization screen
Diffstat (limited to 'dispatch.py')
-rw-r--r-- | dispatch.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/dispatch.py b/dispatch.py index 4bda60f9f..02f953ce7 100644 --- a/dispatch.py +++ b/dispatch.py @@ -49,6 +49,24 @@ from network import networkDeviceCheck # in the second case, the function is called directly from the dispatcher installSteps = [ +# ("readcomps", readPackages, ("intf", "method", "id")), +# ("package-selection", ("id.comps", "dispatch")), +# ("package-group-select-hack", packageGroupSelectHack, ("id.instClass", "id",)), +# ("indivpackage", ("id.comps", "id.hdList")), +# ("networkdevicecheck", networkDeviceCheck, ("id.network", "dispatch")), +# ("network", ("id.network", "dispatch", "intf")), + ("installtype", ("dispatch", "id", "method", "intf")), + ("desktopchoice", ("intf", "dispatch")), + ("readcomps", readPackages, ("intf", "method", "id")), + ("findpackages", upgradeFindPackages, ("intf", "method", "id", + "instPath", "dir")), + ("package-selection", ("id.comps", "dispatch")), + ("package-group-select-hack", packageGroupSelectHack, ("id.instClass", "id",)), + ("indivpackage", ("id.comps", "id.hdList")), + ("partitionobjinit", partitionObjectsInitialize, ("id.diskset", + "id.partitions", + "dir", "intf")), + ("partition", ("id.fsset", "id.diskset", "id.partitions", "intf")), ("welcome", ("id.configFileData",)), ("betanag", betaNagScreen, ("intf", "dir")), ("language", ("intf", "id.instLanguage")), |