From a75101bf3278c40b01a6a7cc934b5c9b12927b98 Mon Sep 17 00:00:00 2001 From: "Bryn M. Reeves" Date: Tue, 16 Sep 2014 21:22:48 +0100 Subject: [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 --- sos/sosreport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit