mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Slight tweaks to config file chapter.
This commit is contained in:
parent
e0af80946b
commit
1d86a6f129
1 changed files with 7 additions and 3 deletions
|
@ -4,7 +4,7 @@ The Ansible Configuration File
|
||||||
|
|
||||||
.. highlight:: bash
|
.. highlight:: bash
|
||||||
|
|
||||||
Certain things in Ansible are adjustable. In general, the stock configuration is probably
|
Certain things in Ansible are adjustable in a configuration file. In general, the stock configuration is probably
|
||||||
right for most users, but that doesn't mean you might not want to change them.
|
right for most users, but that doesn't mean you might not want to change them.
|
||||||
|
|
||||||
The mechanism for doing this is the "ansible.cfg" file, which is looked for in the following locations:
|
The mechanism for doing this is the "ansible.cfg" file, which is looked for in the following locations:
|
||||||
|
@ -13,7 +13,8 @@ The mechanism for doing this is the "ansible.cfg" file, which is looked for in t
|
||||||
* ~/.ansible.cfg
|
* ~/.ansible.cfg
|
||||||
* ansible.cfg (in the playbook directory)
|
* ansible.cfg (in the playbook directory)
|
||||||
|
|
||||||
If multiple file locations matching the above exist, the last location on the list is used.
|
If multiple file locations matching the above exist, the last location on the list is used. Settings are not merged.
|
||||||
|
The last file in the list is found and the others will be ignored.
|
||||||
|
|
||||||
.. contents::
|
.. contents::
|
||||||
:depth: 2
|
:depth: 2
|
||||||
|
@ -34,7 +35,9 @@ Environmental configuration
|
||||||
```````````````````````````
|
```````````````````````````
|
||||||
|
|
||||||
Ansible also allows configuration of settings via environment variables. If these environment variables are set, they will
|
Ansible also allows configuration of settings via environment variables. If these environment variables are set, they will
|
||||||
override any setting loaded from the configuration file.
|
override any setting loaded from the configuration file. These variables are for brevity not defined here, but look in 'constants.py'
|
||||||
|
in the source tree if you want to use these. They are mostly considered to be a legacy system as compared to the config file, but
|
||||||
|
are equally valid.
|
||||||
|
|
||||||
Explanation of values by section
|
Explanation of values by section
|
||||||
````````````````````````````````
|
````````````````````````````````
|
||||||
|
@ -469,3 +472,4 @@ This setting controls the timeout for the socket connect call, and should be kep
|
||||||
|
|
||||||
Note, this value can be set to less than one second, however it is probably not a good idea to do so unless you're on a very fast and reliable LAN. If you're connecting to systems over the internet, it may be neccessary to increase this timeout.
|
Note, this value can be set to less than one second, however it is probably not a good idea to do so unless you're on a very fast and reliable LAN. If you're connecting to systems over the internet, it may be neccessary to increase this timeout.
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue