From 7d8c7323befb1d8948cb822a484c9e8bdd93ee2c Mon Sep 17 00:00:00 2001 From: "Bryn M. Reeves" Date: Thu, 21 Aug 2014 22:00:53 +0100 Subject: [networking] add 'brctl showmacs' output Fixes #371. Signed-off-by: Bryn M. Reeves --- sos/plugins/networking.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sos/plugins/networking.py b/sos/plugins/networking.py index c083b8bd..2fd7292f 100644 --- a/sos/plugins/networking.py +++ b/sos/plugins/networking.py @@ -124,7 +124,10 @@ class Networking(Plugin): brctl_file = self.get_cmd_output_now("brctl show") if brctl_file: for br_name in self.get_bridge_name(brctl_file): - self.add_cmd_output("brctl showstp "+br_name) + self.add_cmd_outputs([ + "brctl showstp "+br_name, + "brctl showmacs "+br_name + ]) nmcli_con_show_result = self.call_ext_prog( "nmcli --terse --fields NAME con show") -- cgit