blob: 0102e10d538d9e917a864e23402bba20a9612eb3 (
plain)
1
2
3
4
5
6
7
8
9
|
--- a/blivet/devicelibs/mpath.py
+++ b/blivet/devicelibs/mpath.py
@@ -11,4 +11,5 @@ def flush_mpaths():
log.error("multipath: some devices could not be flushed")
def is_multipath_member(path):
- return (util.run_program(["multipath", "-c", path]) == 0)
+ return False
+ # return (util.run_program(["multipath", "-c", path]) == 0)
|