diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2018-03-28 16:46:35 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2018-03-28 16:47:52 +0100 |
commit | 7167a02a2f0352b51f89cd15518626783c14fde4 (patch) | |
tree | b2f201803798b281852774b244b99088fee95cd6 | |
parent | 2e09af409a3274a000a8d56599b75c81577c05af (diff) | |
download | sos-7167a02a2f0352b51f89cd15518626783c14fde4.tar.gz |
[wireless] use 'network' profile instead of 'networking'
Slightly confusingly the _plugin_ is 'networking', but the profile
name is 'network': make the new wireless plugin fit in with the
other plugins in this group.
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/wireless.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/wireless.py b/sos/plugins/wireless.py index 1244049b..7d6f72fb 100644 --- a/sos/plugins/wireless.py +++ b/sos/plugins/wireless.py @@ -20,7 +20,7 @@ class Wireless(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): """ plugin_name = 'wireless' - profiles = ('hardware', 'desktop', 'networking') + profiles = ('hardware', 'desktop', 'network') files = ('/sbin/iw', '/usr/sbin/iw') def setup(self): |