summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Lint/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Bcfg2/Server/Lint/__init__.py')
-rw-r--r--src/lib/Bcfg2/Server/Lint/__init__.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/lib/Bcfg2/Server/Lint/__init__.py b/src/lib/Bcfg2/Server/Lint/__init__.py
index d06347cf6..390ec208f 100644
--- a/src/lib/Bcfg2/Server/Lint/__init__.py
+++ b/src/lib/Bcfg2/Server/Lint/__init__.py
@@ -9,6 +9,9 @@ import lxml.etree
import fcntl
import termios
import struct
+from Bcfg2.Compat import walk_packages
+
+plugins = [m[1] for m in walk_packages(path=__path__)]
def _ioctl_GWINSZ(fd): # pylint: disable=C0103
@@ -253,14 +256,14 @@ class ErrorHandler(object):
logfunc(line)
-class ServerlessPlugin(Plugin):
+class ServerlessPlugin(Plugin): # pylint: disable=W0223
""" Base class for bcfg2-lint plugins that are run before the
server starts up (i.e., plugins that check things that may prevent
the server from starting up). """
pass
-class ServerPlugin(Plugin):
+class ServerPlugin(Plugin): # pylint: disable=W0223
""" Base class for bcfg2-lint plugins that check things that
require the running Bcfg2 server. """