diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2014-06-09 21:53:58 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2014-06-09 21:53:58 +0100 |
commit | c2c1d5230bba657d09602a3bca6b822210dc8bac (patch) | |
tree | 9b8f1b3b1f2fe2f216f954ca2431bd9d29a91ff9 | |
parent | bd0b3bdb5a1bbaf3f1b886f558b98a3a87a6a84d (diff) | |
download | sos-c2c1d5230bba657d09602a3bca6b822210dc8bac.tar.gz |
[networking] add biosdevname output
Suggested by Bryan Quigley. Fixes #299.
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/networking.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sos/plugins/networking.py b/sos/plugins/networking.py index ac1c8406..4bf67526 100644 --- a/sos/plugins/networking.py +++ b/sos/plugins/networking.py @@ -108,7 +108,8 @@ class Networking(Plugin): "ip neigh show", "nmcli general status", "nmcli connection show", - "nmcli device status" + "nmcli device status", + "biosdevname -d" ]) ip_link_result=self.call_ext_prog("ip -o link") if ip_link_result['status'] == 0: |