Blame SOURCES/sos-bz1509079-vdo.patch
|
|
8b0807 |
From 2f51f6b7478e69d8f9e8e3a31bddccf6af88c720 Mon Sep 17 00:00:00 2001
|
|
|
8b0807 |
From: Pavel Moravec <pmoravec@redhat.com>
|
|
|
8b0807 |
Date: Tue, 7 Nov 2017 14:28:33 +0100
|
|
|
8b0807 |
Subject: [PATCH] [vdo] collect proper sys paths
|
|
|
8b0807 |
|
|
|
8b0807 |
VDO plugin shall collect /sys/kvdo and /sys/uds
|
|
|
8b0807 |
instead of original /sys/vdo and /sys/albireo
|
|
|
8b0807 |
|
|
|
8b0807 |
Resolves: #1134
|
|
|
8b0807 |
|
|
|
8b0807 |
Signed-off-by: Pavel Moravec <pmoravec@redhat.com>
|
|
|
8b0807 |
---
|
|
|
8b0807 |
sos/plugins/vdo.py | 4 ++--
|
|
|
8b0807 |
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
8b0807 |
|
|
|
8b0807 |
diff --git a/sos/plugins/vdo.py b/sos/plugins/vdo.py
|
|
|
8b0807 |
index e6eff4ad..bdf79886 100644
|
|
|
8b0807 |
--- a/sos/plugins/vdo.py
|
|
|
8b0807 |
+++ b/sos/plugins/vdo.py
|
|
|
8b0807 |
@@ -27,8 +27,8 @@ class Vdo(Plugin, RedHatPlugin):
|
|
|
8b0807 |
profiles = ('storage',)
|
|
|
8b0807 |
packages = ('vdo',)
|
|
|
8b0807 |
files = (
|
|
|
8b0807 |
- '/sys/vdo',
|
|
|
8b0807 |
- '/sys/albireo',
|
|
|
8b0807 |
+ '/sys/kvdo',
|
|
|
8b0807 |
+ '/sys/uds',
|
|
|
8b0807 |
'/etc/vdoconf.yml',
|
|
|
8b0807 |
'/etc/vdoconf.xml'
|
|
|
8b0807 |
)
|
|
|
8b0807 |
--
|
|
|
8b0807 |
2.13.6
|
|
|
8b0807 |
|