mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-27 23:21:22 -07: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:
parent
19df0e0bf5
commit
6e875e81aa
3 changed files with 18 additions and 1 deletions
|
@ -502,6 +502,19 @@ to talk to::
|
||||||
|
|
||||||
It used to be called hostfile in Ansible before 1.9
|
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:
|
||||||
|
|
||||||
jinja2_extensions
|
jinja2_extensions
|
||||||
|
|
|
@ -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::
|
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.
|
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.
|
||||||
|
|
||||||
|
|
|
@ -280,6 +280,10 @@
|
||||||
# Controls showing custom stats at the end, off by default
|
# Controls showing custom stats at the end, off by default
|
||||||
#show_custom_stats = True
|
#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]
|
[privilege_escalation]
|
||||||
#become=True
|
#become=True
|
||||||
#become_method=sudo
|
#become_method=sudo
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue