From 844a7c8823f7314e50f0e9250be6c6b36e752103 Mon Sep 17 00:00:00 2001 From: Scott Butler Date: Tue, 18 Oct 2016 19:04:56 -0700 Subject: [PATCH] Fix for #18092 --- docsite/rst/dev_guide/developing_plugins.rst | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docsite/rst/dev_guide/developing_plugins.rst b/docsite/rst/dev_guide/developing_plugins.rst index 12baaf50e19..fe2346a19d6 100644 --- a/docsite/rst/dev_guide/developing_plugins.rst +++ b/docsite/rst/dev_guide/developing_plugins.rst @@ -228,15 +228,15 @@ Distributing Plugins Plugins are loaded from both Python's site_packages (those that ship with ansible) and a configured plugins directory, which defaults to /usr/share/ansible/plugins, in a subfolder for each plugin type:: - * action - * lookup - * callback - * connection - * filter - * strategy - * cache - * test - * shell + * action_plugins + * lookup_plugins + * callback_plugins + * connection_plugins + * filter_plugins + * strategy_plugins + * cache_plugins + * test_plugins + * shell_plugins To change this path, edit the ansible configuration file.