1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix docs re inventory_ignore_extensions config (#21132)

The list of ignored by default extensions is outdated in doc for dynamic
inventories, and this option is completely missing from configuration
file overview.
This commit is contained in:
Pavlo Shchelokovskyy 2017-02-10 10:32:22 +02:00 committed by scottb
parent 19df0e0bf5
commit 6e875e81aa
3 changed files with 18 additions and 1 deletions

View file

@ -502,6 +502,19 @@ to talk to::
It used to be called hostfile in Ansible before 1.9
.. _inventory_ignore_extensions:
inventory_ignore_extensions
===========================
Coma-separated list of file extension patterns to ignore when Ansible inventory
is a directory with multiple sources (static and dynamic)::
inventory_ignore_extensions = ~, .orig, .bak, .ini, .cfg, .retry, .pyc, .pyo
This option can be overridden by setting ``ANSIBLE_INVENTORY_IGNORE``
environment variable.
.. _jinja2_extensions:
jinja2_extensions

View file

@ -346,7 +346,7 @@ hybrid cloud!
In an inventory directory, executable files will be treated as dynamic inventory sources and most other files as static sources. Files which end with any of the following will be ignored::
~, .orig, .bak, .ini, .retry, .pyc, .pyo
~, .orig, .bak, .ini, .cfg, .retry, .pyc, .pyo
You can replace this list with your own selection by configuring an ``inventory_ignore_extensions`` list in ansible.cfg, or setting the ANSIBLE_INVENTORY_IGNORE environment variable. The value in either case should be a comma-separated list of patterns, as shown above.

View file

@ -280,6 +280,10 @@
# Controls showing custom stats at the end, off by default
#show_custom_stats = True
# Controlls which files to ignore when using a directory as inventory with
# possibly multiple sources (both static and dynamic)
#inventory_ignore_extensions = ~, .orig, .bak, .ini, .cfg, .retry, .pyc, .pyo
[privilege_escalation]
#become=True
#become_method=sudo