diff options
author | Pavlo Shchelokovskyy <pshchelo@users.noreply.github.com> | 2017-02-10 09:32:22 +0100 |
---|---|---|
committer | scottb <dharmabumstead@users.noreply.github.com> | 2017-02-10 09:32:22 +0100 |
commit | 6e875e81aad1300901c80493fca7c1bdb15ea017 (patch) | |
tree | dae038b9e6b07570e2772bbb1e7db04940deb03b /examples/ansible.cfg | |
parent | removed a typo (#21153) (diff) | |
download | ansible-6e875e81aad1300901c80493fca7c1bdb15ea017.tar.xz ansible-6e875e81aad1300901c80493fca7c1bdb15ea017.zip |
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.
Diffstat (limited to 'examples/ansible.cfg')
-rw-r--r-- | examples/ansible.cfg | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/ansible.cfg b/examples/ansible.cfg index fd5ed9badc..e469c9cc18 100644 --- a/examples/ansible.cfg +++ b/examples/ansible.cfg @@ -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 |