diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2014-09-16 21:22:48 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2014-09-16 21:22:48 +0100 |
commit | a75101bf3278c40b01a6a7cc934b5c9b12927b98 (patch) | |
tree | 71c5742fcf6daa8a621a3245ce2114975705b792 | |
parent | ff0df95cd4f1d99a705c95c85f74d6374b98ba77 (diff) | |
download | sos-a75101bf3278c40b01a6a7cc934b5c9b12927b98.tar.gz |
[sosreport] change description of non-default plugins
Plugins are currently listed as 'not default' if the plugin's
default_enabled() method evaluates to False:
sendmail inactive sendmail service
snmp inactive Simple network management protocol
soundcard not default Sound devices
squid inactive Squid caching proxy
It sounds odd and it looks ugly in the plugin listing. Change the
description to 'optional':
sendmail inactive sendmail service
snmp inactive Simple network management protocol
soundcard optional Sound devices
squid inactive Squid caching proxy
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/sosreport.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/sosreport.py b/sos/sosreport.py index b33a0066..664414f5 100644 --- a/sos/sosreport.py +++ b/sos/sosreport.py @@ -889,7 +889,7 @@ class SoSReport(object): continue if self._is_not_default(plugbase, plugin_class): - self._skip(plugin_class, _("not default")) + self._skip(plugin_class, _("optional")) continue # true when the null (empty) profile is active |