aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Moravec <pmoravec@redhat.com>2017-11-07 14:28:33 +0100
committerBryn M. Reeves <bmr@redhat.com>2017-11-15 15:31:30 +0000
commit2f51f6b7478e69d8f9e8e3a31bddccf6af88c720 (patch)
tree321ac248ad40218ecd570657bcbfd30c9836dc20
parent30445cdbeac07bd23e37f7dab81a72be1382fe6d (diff)
downloadsos-2f51f6b7478e69d8f9e8e3a31bddccf6af88c720.tar.gz
[vdo] collect proper sys paths
VDO plugin shall collect /sys/kvdo and /sys/uds instead of original /sys/vdo and /sys/albireo Resolves: #1134 Signed-off-by: Pavel Moravec <pmoravec@redhat.com>
-rw-r--r--sos/plugins/vdo.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sos/plugins/vdo.py b/sos/plugins/vdo.py
index e6eff4ad..bdf79886 100644
--- a/sos/plugins/vdo.py
+++ b/sos/plugins/vdo.py
@@ -27,8 +27,8 @@ class Vdo(Plugin, RedHatPlugin):
profiles = ('storage',)
packages = ('vdo',)
files = (
- '/sys/vdo',
- '/sys/albireo',
+ '/sys/kvdo',
+ '/sys/uds',
'/etc/vdoconf.yml',
'/etc/vdoconf.xml'
)