summaryrefslogtreecommitdiffstats
path: root/dispatch.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2005-08-26 22:40:20 +0000
committerJeremy Katz <katzj@redhat.com>2005-08-26 22:40:20 +0000
commit30674045a3f43d3b309295b56d96d64799e7c708 (patch)
tree5c6aa9859ae8224c9e3e34f83a57d5ff9a1e68a6 /dispatch.py
parent0c22c52b53a519dd51acb3ac7cbaafa810760e31 (diff)
downloadanaconda-30674045a3f43d3b309295b56d96d64799e7c708.tar.gz
anaconda-30674045a3f43d3b309295b56d96d64799e7c708.tar.xz
anaconda-30674045a3f43d3b309295b56d96d64799e7c708.zip
2005-08-26 Jeremy Katz <katzj@redhat.com>
* dispatch.py (installSteps): Add new autopart type step, remove some obsolete stuff (fdisk, fdasd) * gui.py (stepToClass): Add new step. (getGladeWidget): Add helper function for glade screens. * text.py (stepToClasses): Add new step. * installclass.py (BaseInstallClass.setSteps): Add new step. * iw/autopart_type.py: Add first pass at new autopartitioning screen. Still want to make the shown options more dynamic based on what your system initially looks like. * textw/partition_text.py: Add new autopartitioning screen. * ui/autopart.glade: Add glade file for new autopartitioning screen.
Diffstat (limited to 'dispatch.py')
-rw-r--r--dispatch.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/dispatch.py b/dispatch.py
index cb20ba23d..8a7997a0f 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -69,18 +69,13 @@ installSteps = [
#("findinstall", ("dispatch", "intf", "id", "instPath")),
("installtype", ("dispatch", "id", "method", "intf")),
("zfcpconfig", ("id.zfcp", "id.diskset", "intf")),
- ("partitionmethod", ("id.partitions", "id.instClass")),
("partitionobjinit", partitionObjectsInitialize, ("id.diskset",
"id.partitions",
"dir", "intf")),
- ("partitionmethodsetup", partitionMethodSetup, ("id.partitions",
- "dispatch")),
- ("autopartition", ("id.diskset", "id.partitions", "intf", "dispatch")),
+ ("parttype", ("id.diskset", "id.partitions", "intf", "dispatch")),
("autopartitionexecute", doAutoPartition, ("dir", "id.diskset",
"id.partitions", "intf",
"id.instClass", "dispatch")),
- ("fdisk", ("id.diskset", "id.partitions", "intf")),
- ("fdasd", ("id.diskset", "id.partitions", "intf")),
("partition", ("id.fsset", "id.diskset", "id.partitions", "intf")),
("upgrademount", upgradeMountFilesystems, ("intf", "id.upgradeRoot",
"id.fsset", "instPath")),