Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 822 Bytes

README.md

File metadata and controls

22 lines (14 loc) · 822 Bytes

ansible-plugins

A collection of (possibly) usefull Ansible plugins.

How To

Normally, in order to make Ansible scan your custom plugin directories (and load implementing classes), you should provide the proper paths inside the defaults section of your active ansible.cfg file. See also the docs on The Ansible Configuration File.

For example, if you checkout this repository to an ansible_plugins folder under your main project's root folder (e.g. as a git submodule), you could provide the following settings:

[defaults]

# other settings ...

filter_plugins = ./ansible_plugins/filter_plugins:/usr/local/share/ansible_plugins/filter_plugins

lookup_plugins = ./ansible_plugins/lookup_plugins:/usr/local/share/ansible_plugins/lookup_plugins