diff options
author | Pilou <pierre-louis@libregerbil.fr> | 2018-12-11 21:17:05 +0100 |
---|---|---|
committer | ansibot <ansibot@users.noreply.github.com> | 2018-12-11 15:17:05 -0500 |
commit | 1bad617f29c2a17efc8d5702cdce0b6522f0ab26 (patch) | |
tree | f0a2813be906c300b2fc39fb02b7a62705b6259f /examples/ansible.cfg | |
parent | 7af405883ffa2e7688620357c1e9fdb5b3367f4b (diff) | |
download | ansible-1bad617f29c2a17efc8d5702cdce0b6522f0ab26.tar.gz |
Inventory plugins move auto before ini (#44428)
* inventory plugins: try auto before ini
auto plugin should run before ini to avoid ini being able to parse
some plugin configuration YAML files successfully.
* Update comment
comment was added by 2ffe3c42bb15263ad67dd36842712d9d3ec99070 but
related code was later removed by
506e6a0b2d49a147e1c0c0b301c71163ea785d71.
Diffstat (limited to 'examples/ansible.cfg')
-rw-r--r-- | examples/ansible.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/ansible.cfg b/examples/ansible.cfg index b7904afc94..a93ee3e8e5 100644 --- a/examples/ansible.cfg +++ b/examples/ansible.cfg @@ -324,7 +324,7 @@ #any_errors_fatal = False [inventory] -# enable inventory plugins, default: 'host_list', 'script', 'yaml', 'ini', 'auto' +# enable inventory plugins, default: 'host_list', 'script', 'auto', 'yaml', 'ini' #enable_plugins = host_list, virtualbox, yaml, constructed # ignore these extensions when parsing a directory as inventory source |