diff options
author | Mike Fulbright <msf@redhat.com> | 2002-06-25 15:13:27 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2002-06-25 15:13:27 +0000 |
commit | 913ab6e364886eff3a83e415df716efa36c3caf7 (patch) | |
tree | 454fc8eff93a239b9032e5f5f13694cdfed55294 /iw/lvm_dialog_gui.py | |
parent | f3f2d34d39c16dfa1799970586196634f60430ed (diff) | |
download | anaconda-913ab6e364886eff3a83e415df716efa36c3caf7.tar.gz anaconda-913ab6e364886eff3a83e415df716efa36c3caf7.tar.xz anaconda-913ab6e364886eff3a83e415df716efa36c3caf7.zip |
exclude nonsensical options for reformating a preexisting LV
Diffstat (limited to 'iw/lvm_dialog_gui.py')
-rw-r--r-- | iw/lvm_dialog_gui.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/iw/lvm_dialog_gui.py b/iw/lvm_dialog_gui.py index df762500a..7c0a3fe1e 100644 --- a/iw/lvm_dialog_gui.py +++ b/iw/lvm_dialog_gui.py @@ -389,7 +389,7 @@ class VolumeGroupEditor: self.fsoptionsDict = {} if logrequest.getPreExisting(): - (row, self.fsoptionsDict) = createPreExistFSOptionSection(logrequest, maintable, row, mountCombo, showbadblocks=0) + (row, self.fsoptionsDict) = createPreExistFSOptionSection(logrequest, maintable, row, mountCombo, showbadblocks=0, ignorefs = ["software RAID", "physical volume (LVM)", "vfat"]) dialog.vbox.pack_start(maintable) dialog.show_all() @@ -545,6 +545,7 @@ class VolumeGroupEditor: request.size = size request.format = format request.migrate = migrate + request.badblock = None err = request.sanityCheckRequest(self.partitions) if err: |