summaryrefslogtreecommitdiffstats
path: root/kickstart.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-10-05 15:12:36 -0400
committerChris Lumens <clumens@redhat.com>2009-12-11 17:15:35 -0500
commit2984bbb90f3be6568cdeb9af1834b56ba245c92f (patch)
tree051d2d40714a466b84ccddfcb1e92598901f6104 /kickstart.py
parent92cb83bec3dcd1b2590538b10af58332ab017522 (diff)
downloadanaconda-2984bbb90f3be6568cdeb9af1834b56ba245c92f.tar.gz
anaconda-2984bbb90f3be6568cdeb9af1834b56ba245c92f.tar.xz
anaconda-2984bbb90f3be6568cdeb9af1834b56ba245c92f.zip
Add a step to prompt for the cleardisks UI.
This UI is the screen that allows the user to select which devices will be wiped during installation and which should just be mounted. It also allows selecting which device the bootloader should be installed to.
Diffstat (limited to 'kickstart.py')
-rw-r--r--kickstart.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/kickstart.py b/kickstart.py
index 1ba98361c..569123570 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -296,6 +296,7 @@ class ClearPart(commands.clearpart.FC3_ClearPart):
anaconda.id.storage.reinitializeDisks = self.initAll
clearPartitions(anaconda.id.storage)
+ self.handler.skipSteps.append("cleardisksel")
class FcoeData(commands.fcoe.F13_FcoeData):
def execute(self, anaconda):
@@ -1436,6 +1437,7 @@ def setSteps(anaconda):
if anaconda.id.displayMode == "t":
missingSteps = [("bootloader", "Bootloader configuration"),
("filter", "Disks to use in installation"),
+ ("cleardisksel", "Disks to clear"),
("group-selection", "Package selection")]
errors = []