summaryrefslogtreecommitdiff
path: root/lib/ansible/plugins/loader.py
diff options
context:
space:
mode:
authorBrian Coca <bcoca@users.noreply.github.com>2017-11-20 09:24:10 -0500
committerGitHub <noreply@github.com>2017-11-20 09:24:10 -0500
commit6bca5e5a4ad7ca6120e002a00aef107c6f6be986 (patch)
tree419f04cad29aa354a5dfba45b275a5424c3160b6 /lib/ansible/plugins/loader.py
parent53cbc9f6ee7ce5c971e71e3d69321cfb0e368764 (diff)
downloadansible-6bca5e5a4ad7ca6120e002a00aef107c6f6be986.tar.gz
add lookups to config system (#33026)
* add lookups to config system use etcd as proof of concept * some doc updates
Diffstat (limited to 'lib/ansible/plugins/loader.py')
-rw-r--r--lib/ansible/plugins/loader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/plugins/loader.py b/lib/ansible/plugins/loader.py
index 2bca3b29f1..211dd4c6de 100644
--- a/lib/ansible/plugins/loader.py
+++ b/lib/ansible/plugins/loader.py
@@ -210,7 +210,7 @@ class PluginLoader:
type_name = get_plugin_class(self.class_name)
# FIXME: expand from just connection and callback
- if type_name in ('callback', 'connection', 'inventory'):
+ if type_name in ('callback', 'connection', 'inventory', 'lookup'):
dstring = read_docstring(path, verbose=False, ignore_errors=False)
if dstring.get('doc', False):