Make sure we get "cciss/c0d0" rather than "cciss/c" from the parseMultipathOutput() function. --- storage/devicelibs/mpath.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/storage/devicelibs/mpath.py b/storage/devicelibs/mpath.py index ffec28c..c412562 100644 --- a/storage/devicelibs/mpath.py +++ b/storage/devicelibs/mpath.py @@ -39,7 +39,7 @@ def parseMultipathOutput(output): devices = [] policy = re.compile('^[|+` -]+policy') - device = re.compile('^[|+` -]+[0-9]+:[0-9]+:[0-9]+:[0-9]+ ([a-zA-Z!/]+)') + device = re.compile('^[|+` -]+[0-9]+:[0-9]+:[0-9]+:[0-9]+ ([a-zA-Z0-9!/]+)') lines = output.split('\n') for line in lines: -- 1.7.0.1 _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list