diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2016-01-15 15:29:11 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2016-01-15 15:29:57 +0000 |
commit | 86cfad45503461b99c29a4f982159382c1c56179 (patch) | |
tree | 88dce632302f377bdaa7f85218e75abb7632fd5c | |
parent | 4aac9cc628f0c4899f0125a24ad356ccf42bf9f9 (diff) | |
download | sos-86cfad45503461b99c29a4f982159382c1c56179.tar.gz |
[openvswitch] gather database in 'list' format
This changes database dump collection format to 'list' which is a more
readable and easy to parse.
Based on a change suggested by Prasad Mukhedkar.
Resolves: #676.
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/openvswitch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/openvswitch.py b/sos/plugins/openvswitch.py index 8d691dcd..da043a42 100644 --- a/sos/plugins/openvswitch.py +++ b/sos/plugins/openvswitch.py @@ -38,7 +38,7 @@ class OpenVSwitch(Plugin): # to the Open vSwitch server, avoiding hangs when running sos. "ovs-vsctl -t 5 show", # Gather the database. - "ovsdb-client dump" + "ovsdb-client -f list dump" ]) # Gather additional output for each OVS bridge on the host. |