diff options
author | V3n3RiX <venerix@rogentos.ro> | 2015-06-26 15:06:24 +0100 |
---|---|---|
committer | V3n3RiX <venerix@rogentos.ro> | 2015-06-26 15:06:24 +0100 |
commit | 2b921eb19ef0520542ed7ae4a5beae9da9749d4c (patch) | |
tree | 63a7822210385c6042491a4bfa0d82301699c8f9 /dev-python/python-blivet/files/python-blivet-workaround-disable-multipath.patch | |
parent | c2b0d275a42869258071fa3571652bb4c10f254e (diff) | |
parent | fee9d49c73ebb43de8f12c73f7d502044850818e (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'dev-python/python-blivet/files/python-blivet-workaround-disable-multipath.patch')
-rw-r--r-- | dev-python/python-blivet/files/python-blivet-workaround-disable-multipath.patch | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/dev-python/python-blivet/files/python-blivet-workaround-disable-multipath.patch b/dev-python/python-blivet/files/python-blivet-workaround-disable-multipath.patch new file mode 100644 index 00000000..0102e10d --- /dev/null +++ b/dev-python/python-blivet/files/python-blivet-workaround-disable-multipath.patch @@ -0,0 +1,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) |