diff options
author | Chris Lumens <clumens@redhat.com> | 2009-10-05 15:12:36 -0400 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2009-12-11 17:15:35 -0500 |
commit | 2984bbb90f3be6568cdeb9af1834b56ba245c92f (patch) | |
tree | 051d2d40714a466b84ccddfcb1e92598901f6104 /kickstart.py | |
parent | 92cb83bec3dcd1b2590538b10af58332ab017522 (diff) | |
download | anaconda-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.py | 2 |
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 = [] |