summaryrefslogtreecommitdiffstats
path: root/dispatch.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2001-06-25 14:57:41 +0000
committerJeremy Katz <katzj@redhat.com>2001-06-25 14:57:41 +0000
commitf74c4317a0a689baefa4d6143e19642e2b8ae8ca (patch)
tree56e32c3ca14af2a7dfa777c12b392d8a740f2da0 /dispatch.py
parent21891c59ef2d1cdd84caac91881ab0c361859360 (diff)
downloadanaconda-f74c4317a0a689baefa4d6143e19642e2b8ae8ca.tar.gz
anaconda-f74c4317a0a689baefa4d6143e19642e2b8ae8ca.tar.xz
anaconda-f74c4317a0a689baefa4d6143e19642e2b8ae8ca.zip
add in support for fdisk and choosing your partition method... TUI only
at the moment
Diffstat (limited to 'dispatch.py')
-rw-r--r--dispatch.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/dispatch.py b/dispatch.py
index 46d6458dc..f4b788f5b 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -49,8 +49,10 @@ installSteps = [
( "findinstall", ("dispatch", "intf", "id", "instPath") ),
( "upgradecontinue", queryUpgradeContinue, ("intf", "dir")),
( "addswap", ("dispatch", "intf", "id.fsset", "id.diskset", "instPath") ),
- ( "autopartition", ("id.autoClearPartType", "id.autoClearPartDrives", "id.diskset", "intf")),
+ ( "partitionmethod", ("id",) ),
+ ( "autopartition", ("id.autoClearPartType", "id.autoClearPartDrives", "id.diskset", "intf", "id.useAutopartitioning")),
( "autopartitionexecute", doAutoPartition, ("id",)),
+ ( "fdisk", ("id.useFdisk", "id.diskset", "id.partrequests")),
( "partition", ("id.fsset", "id.diskset", "id.partrequests", "intf")),
( "partitiondone", partitioningComplete, ("dispatch", "id.bootloader",
"id.fsset", "id.diskset" ) ),