summaryrefslogtreecommitdiffstats
path: root/isys/isys.py
diff options
context:
space:
mode:
Diffstat (limited to 'isys/isys.py')
-rwxr-xr-xisys/isys.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/isys/isys.py b/isys/isys.py
index 983237ed0..840ebf9a7 100755
--- a/isys/isys.py
+++ b/isys/isys.py
@@ -421,6 +421,10 @@ def driveDict(klassArg):
log.info("ignoring st device %s" %(device,))
continue
+ # we want to ignore md devices as they're not hard disks in our pov
+ if device.startswith("md"):
+ continue
+
if dev['storage.drive_type'] != 'disk':
new[device] = dev
continue