diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2015-12-08 11:51:11 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2015-12-08 11:51:11 +0000 |
commit | 85e9152ea6a95c144f6a50e47bba12e7fab65ef2 (patch) | |
tree | f13df022db4faaaa573a4b3b4cdb3a48f1e8a2ca | |
parent | 4a9b919a7f1b9542a23982e49cc9035e84551e13 (diff) | |
download | sos-85e9152ea6a95c144f6a50e47bba12e7fab65ef2.tar.gz |
[multipath] collect output of 'multipathd show config'
Resolves: #697.
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/multipath.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sos/plugins/multipath.py b/sos/plugins/multipath.py index 22fe16c3..7d615788 100644 --- a/sos/plugins/multipath.py +++ b/sos/plugins/multipath.py @@ -29,7 +29,8 @@ class Multipath(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): ]) self.add_cmd_output([ "multipath -l", - "multipath -v4 -ll" + "multipath -v4 -ll", + "multipathd show config" ]) |