diff options
-rw-r--r-- | sos/plugins/filesys.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sos/plugins/filesys.py b/sos/plugins/filesys.py index 93568361..3a9a9f13 100644 --- a/sos/plugins/filesys.py +++ b/sos/plugins/filesys.py @@ -56,13 +56,13 @@ class filesys(sos.plugintools.PluginBase): start_geo = hdparm.strip().split("\n")[-1].strip().split()[-1] if(start_geo == "0"): devlist.append(dev) - # RHEL* does not ship hdparm for S390(x) - # Cheaper heuristic handling at least dm-.* correctly + # Cheaper heuristic as RHEL* does not ship hdparm for S390(x) + # Skips least dm-.* correctly else: - part_in_disk = re.compile("/dev/[a-z]+[0-9]+$") + part_in_disk = re.compile("^/dev/[a-z]+$") for dev in partlist: print part_in_disk.match(dev) - if not bool(part_in_disk.match(dev)): + if bool(part_in_disk.match(dev)): devlist.append(dev) for i in devlist: |