summaryrefslogtreecommitdiffstats
path: root/dmraid.py
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2007-12-06 17:19:06 -0500
committerBill Nottingham <notting@redhat.com>2007-12-07 13:27:43 -0500
commited7c89428ab7a5dfec6c6e9f7add0e2c20ae644d (patch)
tree2ba78909498d92d3024605eec38f22fe93dab225 /dmraid.py
parent5863d19efb90b03fc2e3b59500586c4e8083d6b6 (diff)
downloadanaconda-ed7c89428ab7a5dfec6c6e9f7add0e2c20ae644d.tar.gz
anaconda-ed7c89428ab7a5dfec6c6e9f7add0e2c20ae644d.tar.xz
anaconda-ed7c89428ab7a5dfec6c6e9f7add0e2c20ae644d.zip
Don't try and make devices. Adjust calls as necessary.
Diffstat (limited to 'dmraid.py')
-rw-r--r--dmraid.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/dmraid.py b/dmraid.py
index 82f5f8e36..95cc6b2e4 100644
--- a/dmraid.py
+++ b/dmraid.py
@@ -122,8 +122,7 @@ def scanForRaid(drives, degradedOk=False):
probeDrives = []
for d in drives:
- dp = isys.makeDevInode(d)
- probeDrives.append(dp)
+ probeDrives.append(d)
dmsets = []
def nonDegraded(rs):
@@ -237,8 +236,7 @@ def scanForMPath(drives):
probeDrives = []
for d in drives:
- dp = isys.makeDevInode(d)
- probeDrives.append(dp)
+ probeDrives.append(d)
import block as _block
oldPath = _block.getBdevidPath()