diff options
author | 李宏杰 <982264618@qq.com> | 2018-06-22 23:24:18 +0800 |
---|---|---|
committer | Brian Coca <bcoca@users.noreply.github.com> | 2018-06-22 11:24:18 -0400 |
commit | e9b658baae77d5eb157e399f461318ba7c5d9a86 (patch) | |
tree | 3662f31520e8a2b594c53f167563366d8cf8b7c2 /examples | |
parent | c65b7eb52e3f1999292f845bce19d7f541645f76 (diff) | |
download | ansible-e9b658baae77d5eb157e399f461318ba7c5d9a86.tar.gz |
update ansible.cfg example (#41832)
Diffstat (limited to 'examples')
-rw-r--r-- | examples/ansible.cfg | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/examples/ansible.cfg b/examples/ansible.cfg index a2a3c54d37..f01abf56bf 100644 --- a/examples/ansible.cfg +++ b/examples/ansible.cfg @@ -232,6 +232,13 @@ # current IP information. #fact_caching = memory +#This option tells Ansible where to cache facts. The value is plugin dependent. +#For the jsonfile plugin, it should be a path to a local directory. +#For the redis plugin, the value is a host:port:database triplet: fact_caching_connection = localhost:6379:0 + +#fact_caching_connection=/tmp + + # retry files # When a playbook fails by default a .retry file will be created in ~/ |