tripleo-operator-ansible/plugins
Sorin Sbarnea 9e1994c20b Fixed flake8 excludes and new-lines
- Adopt recommended way to call flake8 via pre-commit and fix excludes.
- This allows calling flake8 as standalone too
- Used black rules
- Fixed several wrong newlines (fixed by pre-commit)

Change-Id: I07be03c43928e0f5f44cd9a262841723193230c3
2020-01-27 19:10:31 +00:00
..
action Fixed flake8 excludes and new-lines 2020-01-27 19:10:31 +00:00
filter Drop redundant filters 2020-01-14 14:59:29 +00:00
README.md Add basic role for undercloud function 2020-01-14 07:58:22 -07:00

README.md

Collections Plugins Directory

This directory can be used to ship various plugins inside an Ansible collection. Each plugin is placed in a folder that is named after the type of plugin it is in. It can also include the module_utils and modules directory that would contain module utils and modules respectively.

Here is an example directory of the majority of plugins currently supported by Ansible:

└── plugins
    ├── action
    ├── become
    ├── cache
    ├── callback
    ├── cliconf
    ├── connection
    ├── filter
    ├── httpapi
    ├── inventory
    ├── lookup
    ├── module_utils
    ├── modules
    ├── netconf
    ├── shell
    ├── strategy
    ├── terminal
    ├── test
    └── vars

A full list of plugin types can be found at Working With Plugins.