mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-23 04:24:00 -07:00
Support strategy_plugins setting in a configuration file
This commit is contained in:
parent
45b7fe1590
commit
299c18d700
5 changed files with 18 additions and 1 deletions
|
@ -112,6 +112,7 @@ to /usr/share/ansible/plugins, in a subfolder for each plugin type::
|
|||
* connection_plugins
|
||||
* filter_plugins
|
||||
* vars_plugins
|
||||
* strategy_plugins
|
||||
|
||||
To change this path, edit the ansible configuration file.
|
||||
|
||||
|
|
|
@ -600,6 +600,20 @@ Additional paths can be provided separated by colon characters, in the same way
|
|||
Roles will be first searched for in the playbook directory. Should a role not be found, it will indicate all the possible paths
|
||||
that were searched.
|
||||
|
||||
.. _strategy_plugins:
|
||||
|
||||
strategy_plugins
|
||||
==================
|
||||
|
||||
Strategy plugin allow users to change the way in which Ansible runs tasks on targeted hosts.
|
||||
|
||||
This is a developer-centric feature that allows low-level extensions around Ansible to be loaded from
|
||||
different locations::
|
||||
|
||||
strategy_plugins = ~/.ansible/plugins/strategy_plugins/:/usr/share/ansible_plugins/strategy_plugins
|
||||
|
||||
Most users will not need to use this feature. See :doc:`developing_plugins` for more details
|
||||
|
||||
.. _sudo_exe:
|
||||
|
||||
sudo_exe
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue