summaryrefslogtreecommitdiffstats
path: root/storage/formats/disklabel.py
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2009-12-09 01:32:45 -0600
committerDavid Lehman <dlehman@redhat.com>2009-12-09 15:12:59 -0600
commit98a98afff231fd055d2259eafb83fd5ac83bca8f (patch)
tree8f32836c136bcacffcd7b5336d1d312530bb19d3 /storage/formats/disklabel.py
parent86146db84df75119becfa4cdab09e8569bc2992d (diff)
downloadanaconda-98a98afff231fd055d2259eafb83fd5ac83bca8f.tar.gz
anaconda-98a98afff231fd055d2259eafb83fd5ac83bca8f.tar.xz
anaconda-98a98afff231fd055d2259eafb83fd5ac83bca8f.zip
Hide devices with certain formatting in the main partitioning UI.
We don't want to show biosraid, multipath, &c disks in the GUI.
Diffstat (limited to 'storage/formats/disklabel.py')
-rw-r--r--storage/formats/disklabel.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/storage/formats/disklabel.py b/storage/formats/disklabel.py
index cd8766991..4681894f6 100644
--- a/storage/formats/disklabel.py
+++ b/storage/formats/disklabel.py
@@ -44,6 +44,7 @@ class DiskLabel(DeviceFormat):
_name = None
_formattable = True # can be formatted
_supported = False # is supported
+ _hidden = True # hide devices with this formatting?
def __init__(self, *args, **kwargs):
""" Create a DiskLabel instance.