ANSIBLE_CACHE_PLUGIN_TIMEOUT - docs (#65311)
This commit is contained in:
parent
030b20b024
commit
4239dc1bb5
6 changed files with 6 additions and 6 deletions
2
lib/ansible/plugins/cache/jsonfile.py
vendored
2
lib/ansible/plugins/cache/jsonfile.py
vendored
|
@ -32,7 +32,7 @@ DOCUMENTATION = '''
|
||||||
section: defaults
|
section: defaults
|
||||||
_timeout:
|
_timeout:
|
||||||
default: 86400
|
default: 86400
|
||||||
description: Expiration timeout for the cache plugin data
|
description: Expiration timeout in seconds for the cache plugin data. Set to 0 to never expire
|
||||||
env:
|
env:
|
||||||
- name: ANSIBLE_CACHE_PLUGIN_TIMEOUT
|
- name: ANSIBLE_CACHE_PLUGIN_TIMEOUT
|
||||||
ini:
|
ini:
|
||||||
|
|
2
lib/ansible/plugins/cache/memcached.py
vendored
2
lib/ansible/plugins/cache/memcached.py
vendored
|
@ -34,7 +34,7 @@ DOCUMENTATION = '''
|
||||||
section: defaults
|
section: defaults
|
||||||
_timeout:
|
_timeout:
|
||||||
default: 86400
|
default: 86400
|
||||||
description: Expiration timeout for the cache plugin data
|
description: Expiration timeout in seconds for the cache plugin data. Set to 0 to never expire
|
||||||
env:
|
env:
|
||||||
- name: ANSIBLE_CACHE_PLUGIN_TIMEOUT
|
- name: ANSIBLE_CACHE_PLUGIN_TIMEOUT
|
||||||
ini:
|
ini:
|
||||||
|
|
2
lib/ansible/plugins/cache/mongodb.py
vendored
2
lib/ansible/plugins/cache/mongodb.py
vendored
|
@ -35,7 +35,7 @@ DOCUMENTATION = '''
|
||||||
section: defaults
|
section: defaults
|
||||||
_timeout:
|
_timeout:
|
||||||
default: 86400
|
default: 86400
|
||||||
description: Expiration timeout in seconds for the cache plugin data
|
description: Expiration timeout in seconds for the cache plugin data. Set to 0 to never expire
|
||||||
env:
|
env:
|
||||||
- name: ANSIBLE_CACHE_PLUGIN_TIMEOUT
|
- name: ANSIBLE_CACHE_PLUGIN_TIMEOUT
|
||||||
ini:
|
ini:
|
||||||
|
|
2
lib/ansible/plugins/cache/pickle.py
vendored
2
lib/ansible/plugins/cache/pickle.py
vendored
|
@ -32,7 +32,7 @@ DOCUMENTATION = '''
|
||||||
section: defaults
|
section: defaults
|
||||||
_timeout:
|
_timeout:
|
||||||
default: 86400
|
default: 86400
|
||||||
description: Expiration timeout for the cache plugin data
|
description: Expiration timeout in seconds for the cache plugin data. Set to 0 to never expire
|
||||||
env:
|
env:
|
||||||
- name: ANSIBLE_CACHE_PLUGIN_TIMEOUT
|
- name: ANSIBLE_CACHE_PLUGIN_TIMEOUT
|
||||||
ini:
|
ini:
|
||||||
|
|
2
lib/ansible/plugins/cache/redis.py
vendored
2
lib/ansible/plugins/cache/redis.py
vendored
|
@ -32,7 +32,7 @@ DOCUMENTATION = '''
|
||||||
section: defaults
|
section: defaults
|
||||||
_timeout:
|
_timeout:
|
||||||
default: 86400
|
default: 86400
|
||||||
description: Expiration timeout for the cache plugin data
|
description: Expiration timeout in seconds for the cache plugin data. Set to 0 to never expire
|
||||||
env:
|
env:
|
||||||
- name: ANSIBLE_CACHE_PLUGIN_TIMEOUT
|
- name: ANSIBLE_CACHE_PLUGIN_TIMEOUT
|
||||||
ini:
|
ini:
|
||||||
|
|
2
lib/ansible/plugins/cache/yaml.py
vendored
2
lib/ansible/plugins/cache/yaml.py
vendored
|
@ -32,7 +32,7 @@ DOCUMENTATION = '''
|
||||||
section: defaults
|
section: defaults
|
||||||
_timeout:
|
_timeout:
|
||||||
default: 86400
|
default: 86400
|
||||||
description: Expiration timeout for the cache plugin data
|
description: Expiration timeout in seconds for the cache plugin data. Set to 0 to never expire
|
||||||
env:
|
env:
|
||||||
- name: ANSIBLE_CACHE_PLUGIN_TIMEOUT
|
- name: ANSIBLE_CACHE_PLUGIN_TIMEOUT
|
||||||
ini:
|
ini:
|
||||||
|
|
Loading…
Reference in a new issue