From 4af584240962c72fc331ab04c9387188a29a163b Mon Sep 17 00:00:00 2001 From: Kevin Breit Date: Wed, 27 Feb 2019 11:53:39 -0600 Subject: [PATCH] Developer documentation - Change path to connection_plugins (#52577) * Change path to connection_plugins * Update docs/docsite/rst/dev_guide/developing_plugins.rst Co-Authored-By: kbreit --- docs/docsite/rst/dev_guide/developing_plugins.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docsite/rst/dev_guide/developing_plugins.rst b/docs/docsite/rst/dev_guide/developing_plugins.rst index 449c0b6890..443daa9294 100644 --- a/docs/docsite/rst/dev_guide/developing_plugins.rst +++ b/docs/docsite/rst/dev_guide/developing_plugins.rst @@ -246,7 +246,7 @@ Connection plugins allow Ansible to connect to the target hosts so it can execut Ansible version 2.1 introduced the ``smart`` connection plugin. The ``smart`` connection type allows Ansible to automatically select either the ``paramiko`` or ``openssh`` connection plugin based on system capabilities, or the ``ssh`` connection plugin if OpenSSH supports ControlPersist. -To create a new connection plugin (for example, to support SNMP, Message bus, or other transports), copy the format of one of the existing connection plugins and drop it into the ``connection_plugins`` directory. +To create a new connection plugin (for example, to support SNMP, Message bus, or other transports), copy the format of one of the existing connection plugins and drop it into ``connection`` directory on your :ref:`local plugin path `. For example connection plugins, see the source code for the `connection plugins included with Ansible Core `_.