summaryrefslogtreecommitdiff
path: root/docsite
diff options
context:
space:
mode:
authorMicheil Smith <micheil@brandedcode.com>2014-01-25 21:52:53 +0000
committerMicheil Smith <micheil@brandedcode.com>2014-01-25 21:52:53 +0000
commitc66700816120fe404a22741f751199347963eda3 (patch)
tree2743f426ea9a3c6131e9f3dda203801dff8a2231 /docsite
parentea138cc1fb6dc5147bb02be38c9df414ba92dbb7 (diff)
downloadansible-c66700816120fe404a22741f751199347963eda3.tar.gz
Fixing *_plugins configuration names and values
Based on reading of Developing Plugins and the example ansible.cfg file, it seems the sections changed here were created in error by a copy and paste.
Diffstat (limited to 'docsite')
-rw-r--r--docsite/rst/intro_configuration.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docsite/rst/intro_configuration.rst b/docsite/rst/intro_configuration.rst
index b4f675f414..f6798a287a 100644
--- a/docsite/rst/intro_configuration.rst
+++ b/docsite/rst/intro_configuration.rst
@@ -114,7 +114,7 @@ callback_plugins
This is a developer-centric feature that allows low-level extensions around Ansible to be loaded from
different locations::
- action_plugins = /usr/share/ansible_plugins/action_plugins
+ callback_plugins = /usr/share/ansible_plugins/callback_plugins
Most users will not need to use this feature. See :doc:`developing_plugins` for more details
@@ -126,7 +126,7 @@ connection_plugins
This is a developer-centric feature that allows low-level extensions around Ansible to be loaded from
different locations::
- action_plugins = /usr/share/ansible_plugins/action_plugins
+ connection_plugins = /usr/share/ansible_plugins/connection_plugins
Most users will not need to use this feature. See :doc:`developing_plugins` for more details
@@ -185,7 +185,7 @@ filter_plugins
This is a developer-centric feature that allows low-level extensions around Ansible to be loaded from
different locations::
- action_plugins = /usr/share/ansible_plugins/action_plugins
+ filter_plugins = /usr/share/ansible_plugins/filter_plugins
Most users will not need to use this feature. See :doc:`developing_plugins` for more details
@@ -297,7 +297,7 @@ lookup_plugins
This is a developer-centric feature that allows low-level extensions around Ansible to be loaded from
different locations::
- action_plugins = /usr/share/ansible_plugins/action_plugins
+ lookup_plugins = /usr/share/ansible_plugins/lookup_plugins
Most users will not need to use this feature. See :doc:`developing_plugins` for more details
@@ -476,7 +476,7 @@ vars_plugins
This is a developer-centric feature that allows low-level extensions around Ansible to be loaded from
different locations::
- action_plugins = /usr/share/ansible_plugins/action_plugins
+ vars_plugins = /usr/share/ansible_plugins/vars_plugins
Most users will not need to use this feature. See :doc:`developing_plugins` for more details