diff options
author | Bill Nottingham <notting@redhat.com> | 2007-12-06 17:19:06 -0500 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2007-12-07 13:27:43 -0500 |
commit | ed7c89428ab7a5dfec6c6e9f7add0e2c20ae644d (patch) | |
tree | 2ba78909498d92d3024605eec38f22fe93dab225 /dmraid.py | |
parent | 5863d19efb90b03fc2e3b59500586c4e8083d6b6 (diff) | |
download | anaconda-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.py | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -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() |