tripleo-operator-ansible/plugins
Alex Schultz a94d4ab876 Add module to output scripts
In CI and other environments, we leave shell scripts for reproducing the
commands that were run. This change adds a tripleo_shell_script module
that will take the command and environment and write out a script that
represents what would be run by the ansible tasks.

Change-Id: Ie3d3a57723db3f7d5f1896b455ac703a06e97aac
2020-03-31 13:37:35 -06:00
..
action Fixed flake8 excludes and new-lines 2020-01-27 19:10:31 +00:00
filter Quote values for shell_arg_list 2020-03-17 17:23:18 -06:00
modules Add module to output scripts 2020-03-31 13:37:35 -06: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.