diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-09-25 22:15:34 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-09-25 22:15:34 +0000 |
commit | 10b0c3b8d2c0c8f50859a402a6699d4a24f21158 (patch) | |
tree | 97bbd813669ead0ebbb4ccaa20d3f69d00116216 /iw/partition_gui.py | |
parent | 9c8ce90053dcfba57762413da4a310bcc5751de5 (diff) | |
download | anaconda-10b0c3b8d2c0c8f50859a402a6699d4a24f21158.tar.gz anaconda-10b0c3b8d2c0c8f50859a402a6699d4a24f21158.tar.xz anaconda-10b0c3b8d2c0c8f50859a402a6699d4a24f21158.zip |
restrict fs to software RAID when going from the wizard (#67563)
Diffstat (limited to 'iw/partition_gui.py')
-rw-r--r-- | iw/partition_gui.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/iw/partition_gui.py b/iw/partition_gui.py index 7324944e6..1dfd4b5f1 100644 --- a/iw/partition_gui.py +++ b/iw/partition_gui.py @@ -1082,13 +1082,14 @@ class PartitionWindow(InstallWindow): raideditor.destroy() - def editPartitionRequest(self, origrequest, isNew = 0): + def editPartitionRequest(self, origrequest, isNew = 0, restrictfs = None): parteditor = partition_dialog_gui.PartitionEditor(self.partitions, self.diskset, self.intf, self.parent, origrequest, - isNew) + isNew = isNew, + restrictfs = restrictfs) while 1: request = parteditor.run() @@ -1297,7 +1298,7 @@ class PartitionWindow(InstallWindow): # see which option they choose if createRAIDpart.get_active(): rdrequest = NewPartitionSpec(fileSystemTypeGet("software RAID"), size = 100) - rc = self.editPartitionRequest(rdrequest, isNew = 1) + rc = self.editPartitionRequest(rdrequest, isNew = 1, restrictfs=["software RAID"]) elif createRAIDdev.get_active(): self.editRaidRequest(request, isNew=1) else: |