2018-11-29 21:03:00 +01:00
|
|
|
.. _shell_plugins:
|
2018-04-16 15:29:49 +02:00
|
|
|
|
2017-09-23 05:19:50 +02:00
|
|
|
Shell Plugins
|
2018-11-29 21:03:00 +01:00
|
|
|
=============
|
|
|
|
|
|
|
|
.. contents::
|
|
|
|
:local:
|
|
|
|
:depth: 2
|
2017-09-23 05:19:50 +02:00
|
|
|
|
2018-04-16 15:29:49 +02:00
|
|
|
Shell plugins work to ensure that the basic commands Ansible runs are properly formatted to work with
|
2018-04-25 20:18:52 +02:00
|
|
|
the target machine and allow the user to configure certain behaviors related to how Ansible executes tasks.
|
2017-10-11 06:15:25 +02:00
|
|
|
|
|
|
|
.. _enabling_shell:
|
2017-09-23 05:19:50 +02:00
|
|
|
|
2018-11-29 21:03:00 +01:00
|
|
|
Enabling shell plugins
|
|
|
|
----------------------
|
2017-09-23 05:19:50 +02:00
|
|
|
|
2017-10-11 06:15:25 +02:00
|
|
|
You can add a custom shell plugin by dropping it into a ``shell_plugins`` directory adjacent to your play, inside a role,
|
2018-04-20 02:02:30 +02:00
|
|
|
or by putting it in one of the shell plugin directory sources configured in :ref:`ansible.cfg <ansible_configuration_settings>`.
|
2017-10-11 06:15:25 +02:00
|
|
|
|
2018-04-16 15:29:49 +02:00
|
|
|
.. warning:: You should not alter which plugin is used unless you have a setup in which the default ``/bin/sh``
|
2018-04-20 02:02:30 +02:00
|
|
|
is not a POSIX compatible shell or is not available for execution.
|
2017-10-11 06:15:25 +02:00
|
|
|
|
|
|
|
.. _using_shell:
|
|
|
|
|
2018-11-29 21:03:00 +01:00
|
|
|
Using shell plugins
|
|
|
|
-------------------
|
2017-09-26 00:37:33 +02:00
|
|
|
|
2018-04-20 02:02:30 +02:00
|
|
|
In addition to the default configuration settings in :ref:`ansible_configuration_settings`, you can use
|
2018-04-25 20:18:52 +02:00
|
|
|
the connection variable :ref:`ansible_shell_type <ansible_shell_type>` to select the plugin to use.
|
|
|
|
In this case, you will also want to update the :ref:`ansible_shell_executable <ansible_shell_executable>` to match.
|
2017-09-23 05:19:50 +02:00
|
|
|
|
2018-04-16 15:29:49 +02:00
|
|
|
You can further control the settings for each plugin via other configuration options
|
2018-04-20 02:02:30 +02:00
|
|
|
detailed in the plugin themselves (linked below).
|
2018-04-16 15:29:49 +02:00
|
|
|
|
2017-09-23 05:19:50 +02:00
|
|
|
.. seealso::
|
|
|
|
|
2018-11-29 21:03:00 +01:00
|
|
|
:ref:`about_playbooks`
|
2017-09-23 05:19:50 +02:00
|
|
|
An introduction to playbooks
|
2018-11-29 21:03:00 +01:00
|
|
|
:ref:`inventory_plugins`
|
2017-09-23 05:19:50 +02:00
|
|
|
Ansible inventory plugins
|
2018-11-29 21:03:00 +01:00
|
|
|
:ref:`callback_plugins`
|
2017-09-23 05:19:50 +02:00
|
|
|
Ansible callback plugins
|
2018-11-29 21:03:00 +01:00
|
|
|
:ref:`playbooks_filters`
|
2017-09-23 05:19:50 +02:00
|
|
|
Jinja2 filter plugins
|
2018-11-29 21:03:00 +01:00
|
|
|
:ref:`playbooks_tests`
|
2017-09-23 05:19:50 +02:00
|
|
|
Jinja2 test plugins
|
2018-11-29 21:03:00 +01:00
|
|
|
:ref:`playbooks_lookups`
|
2017-09-23 05:19:50 +02:00
|
|
|
Jinja2 lookup plugins
|
2018-07-21 15:48:47 +02:00
|
|
|
`User Mailing List <https://groups.google.com/group/ansible-devel>`_
|
2017-09-23 05:19:50 +02:00
|
|
|
Have a question? Stop by the google group!
|
|
|
|
`irc.freenode.net <http://irc.freenode.net>`_
|
|
|
|
#ansible IRC chat channel
|