|
| 1 | +[defaults] |
| 2 | + |
| 3 | +inventory = {{CWD}}/inventories |
| 4 | + |
| 5 | +interpreter_python = auto |
| 6 | + |
| 7 | +# plays will gather facts by default, which contain information about |
| 8 | +# the remote system. |
| 9 | +# |
| 10 | +# smart - gather by default, but don't regather if already gathered |
| 11 | +# implicit - gather by default, turn off with gather_facts: False |
| 12 | +# explicit - do not gather by default, must say gather_facts: True |
| 13 | +gathering = smart |
| 14 | + |
| 15 | +# if set to a persistent type (not 'memory', for example 'redis') fact values |
| 16 | +# from previous runs in Ansible will be stored. This may be useful when |
| 17 | +# wanting to use, for example, IP information from one group of servers |
| 18 | +# without having to talk to them in the same playbook run to get their |
| 19 | +# current IP information. |
| 20 | +fact_caching = jsonfile |
| 21 | +# This option tells Ansible where to cache facts. The value is plugin dependent. |
| 22 | +# For the jsonfile plugin, it should be a path to a local directory. |
| 23 | +# For the redis plugin, the value is a host:port:database triplet: fact_caching_connection = localhost:6379:0 |
| 24 | +fact_caching_connection = /tmp |
| 25 | + |
| 26 | +# Enabling pipelining reduces the number of SSH operations required to |
| 27 | +# execute a module on the remote server. This can result in a significant |
| 28 | +# performance improvement when enabled, however when using "sudo:" you must |
| 29 | +# first disable 'requiretty' in /etc/sudoers |
| 30 | +# |
| 31 | +# By default, this option is disabled to preserve compatibility with |
| 32 | +# sudoers configurations that have requiretty (the default on many distros). |
| 33 | +# |
| 34 | +pipelining = True |
0 commit comments