aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlavio Leitner <fbl@redhat.com>2016-05-05 13:06:54 -0400
committerBryn M. Reeves <bmr@redhat.com>2016-05-26 18:22:27 +0100
commit442a16d62b567b954adb061cfc50ab90d9349f36 (patch)
tree08dc8d166a2df12237fd61b586d0ffc51cd2d44a
parent70921fe3b82962aa63fc91ffc15b39a7f35007eb (diff)
downloadsos-442a16d62b567b954adb061cfc50ab90d9349f36.tar.gz
[openvswitch] Sort alphabetically the commands
Signed-off-by: Flavio Leitner <fbl@redhat.com>
-rw-r--r--sos/plugins/openvswitch.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/sos/plugins/openvswitch.py b/sos/plugins/openvswitch.py
index e22c037a..e080dc1f 100644
--- a/sos/plugins/openvswitch.py
+++ b/sos/plugins/openvswitch.py
@@ -55,13 +55,13 @@ class OpenVSwitch(Plugin):
if br_list_result['status'] == 0:
for br in br_list_result['output'].splitlines():
self.add_cmd_output([
- "ovs-ofctl show %s" % br,
- "ovs-ofctl dump-flows %s" % br,
"ovs-appctl fdb/show %s" % br,
- "ovs-ofctl dump-ports %s" % br,
+ "ovs-ofctl dump-flows %s" % br,
"ovs-ofctl dump-ports-desc %s" % br,
+ "ovs-ofctl dump-ports %s" % br,
+ "ovs-ofctl queue-get-config %s" % br,
"ovs-ofctl queue-stats %s" % br,
- "ovs-ofctl queue-get-config %s" % br
+ "ovs-ofctl show %s" % br
])