diff options
author | shnavid <shnavid@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2007-07-10 09:27:22 +0000 |
---|---|---|
committer | shnavid <shnavid@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2007-07-10 09:27:22 +0000 |
commit | c0fa22c1b56507aae456665d19f4bd2155413d63 (patch) | |
tree | 0e3fab3516f3ba7768271e9add8e5ab19c5be052 /src/lib | |
parent | 86a98753ea78d477a4974c3a459aa782a4d64c2f (diff) | |
download | sos-c0fa22c1b56507aae456665d19f4bd2155413d63.tar.gz |
* plugin.defaultenabled() decides whether a plugin will be automatically loaded or only if specified in -o.
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/sos/trunk@183 ef72aa8b-4018-0410-8976-d6e080ef94d8
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/sos/plugintools.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/sos/plugintools.py b/src/lib/sos/plugintools.py index 8c51fcfc..0196bd55 100644 --- a/src/lib/sos/plugintools.py +++ b/src/lib/sos/plugintools.py @@ -420,6 +420,11 @@ class PluginBase: it should run or not. """ return True + + def defaultenabled(self): + """This devices whether a plugin should be automatically loaded or + only if manually specified in the command line.""" + return True def collect(self): """ This function has been replaced with setup(). Please change your |