2018-04-16 15:29:49 +02:00
|
|
|
.. contents:: Topics
|
|
|
|
|
2017-09-23 05:19:50 +02:00
|
|
|
Shell Plugins
|
|
|
|
-------------
|
|
|
|
|
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
|
|
|
|
the target machine and allow the user to configure certain behaviours related to how Ansible executes tasks.
|
2017-10-11 06:15:25 +02:00
|
|
|
|
|
|
|
.. _enabling_shell:
|
2017-09-23 05:19:50 +02:00
|
|
|
|
|
|
|
Enabling Shell Plugins
|
|
|
|
++++++++++++++++++++++
|
|
|
|
|
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,
|
|
|
|
or by putting it in one of the shell plugin directory sources configured in :doc:`ansible.cfg <../config>`.
|
|
|
|
|
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``
|
|
|
|
is not a POSIX compatible shell or is not availble for execution.
|
2017-10-11 06:15:25 +02:00
|
|
|
|
|
|
|
.. _using_shell:
|
|
|
|
|
|
|
|
Using Shell Plugins
|
|
|
|
+++++++++++++++++++
|
2017-09-26 00:37:33 +02:00
|
|
|
|
2018-04-16 15:29:49 +02:00
|
|
|
In addition to the default configuration settings in :doc:`../config`, you can use
|
|
|
|
a 'connection variable' :ref:`ansible_shell_type` to select the plugin to use.
|
2017-10-11 06:15:25 +02:00
|
|
|
In this case, you will also want to update the :ref:`ansible_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
|
|
|
|
detailed in the plugin themsleves (linked below).
|
|
|
|
|
|
|
|
.. toctree:: :maxdepth: 1
|
|
|
|
:glob:
|
|
|
|
|
|
|
|
shell/*
|
|
|
|
|
2017-09-23 05:19:50 +02:00
|
|
|
.. seealso::
|
|
|
|
|
2018-02-13 16:23:55 +01:00
|
|
|
:doc:`../user_guide/playbooks`
|
2017-09-23 05:19:50 +02:00
|
|
|
An introduction to playbooks
|
|
|
|
:doc:`inventory`
|
|
|
|
Ansible inventory plugins
|
|
|
|
:doc:`callback`
|
|
|
|
Ansible callback plugins
|
2018-02-13 16:23:55 +01:00
|
|
|
:doc:`../user_guide/playbooks_filters`
|
2017-09-23 05:19:50 +02:00
|
|
|
Jinja2 filter plugins
|
2018-02-13 16:23:55 +01:00
|
|
|
:doc:`../user_guide/playbooks_tests`
|
2017-09-23 05:19:50 +02:00
|
|
|
Jinja2 test plugins
|
2018-02-13 16:23:55 +01:00
|
|
|
:doc:`../user_guide/playbooks_lookups`
|
2017-09-23 05:19:50 +02:00
|
|
|
Jinja2 lookup plugins
|
|
|
|
`User Mailing List <http://groups.google.com/group/ansible-devel>`_
|
|
|
|
Have a question? Stop by the google group!
|
|
|
|
`irc.freenode.net <http://irc.freenode.net>`_
|
|
|
|
#ansible IRC chat channel
|