summaryrefslogtreecommitdiffstats
path: root/isys
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2008-04-08 16:34:26 -0400
committerPeter Jones <pjones@pjones2.localdomain>2008-04-08 16:34:26 -0400
commit690685064243c53523ac33205faf85691e7e494c (patch)
tree32fcc705c640d1d24cfb998abc0224f0a0533d3a /isys
parentd1fc71e3455d51405974f1907fd388f865f2b6ac (diff)
parentc606d67c73e5c39c7dda2260978c7b4d6f8c6bb3 (diff)
downloadanaconda-690685064243c53523ac33205faf85691e7e494c.tar.gz
anaconda-690685064243c53523ac33205faf85691e7e494c.tar.xz
anaconda-690685064243c53523ac33205faf85691e7e494c.zip
Merge branch 'master' of git+ssh://git.fedoraproject.org/git/hosted/anaconda
Diffstat (limited to 'isys')
-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