mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Correct doc for cache plugin
Section is a part of ini, so removing it as separate key. Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
parent
7255b6a151
commit
3b14d2b745
6 changed files with 7 additions and 7 deletions
4
lib/ansible/plugins/cache/jsonfile.py
vendored
4
lib/ansible/plugins/cache/jsonfile.py
vendored
|
@ -12,7 +12,7 @@ DOCUMENTATION = '''
|
||||||
description:
|
description:
|
||||||
- This cache uses JSON formatted, per host, files saved to the filesystem.
|
- This cache uses JSON formatted, per host, files saved to the filesystem.
|
||||||
version_added: "1.9"
|
version_added: "1.9"
|
||||||
author: Ansible Core
|
author: Ansible Core (@ansible-core)
|
||||||
options:
|
options:
|
||||||
_uri:
|
_uri:
|
||||||
required: True
|
required: True
|
||||||
|
@ -30,7 +30,7 @@ DOCUMENTATION = '''
|
||||||
- name: ANSIBLE_CACHE_PLUGIN_PREFIX
|
- name: ANSIBLE_CACHE_PLUGIN_PREFIX
|
||||||
ini:
|
ini:
|
||||||
- key: fact_caching_prefix
|
- key: fact_caching_prefix
|
||||||
- section: defaults
|
section: defaults
|
||||||
_timeout:
|
_timeout:
|
||||||
default: 86400
|
default: 86400
|
||||||
description: Expiration timeout for the cache plugin data
|
description: Expiration timeout for the cache plugin data
|
||||||
|
|
2
lib/ansible/plugins/cache/memcached.py
vendored
2
lib/ansible/plugins/cache/memcached.py
vendored
|
@ -30,7 +30,7 @@ DOCUMENTATION = '''
|
||||||
- name: ANSIBLE_CACHE_PLUGIN_PREFIX
|
- name: ANSIBLE_CACHE_PLUGIN_PREFIX
|
||||||
ini:
|
ini:
|
||||||
- key: fact_caching_prefix
|
- key: fact_caching_prefix
|
||||||
- section: defaults
|
section: defaults
|
||||||
_timeout:
|
_timeout:
|
||||||
default: 86400
|
default: 86400
|
||||||
description: Expiration timeout for the cache plugin data
|
description: Expiration timeout for the cache plugin data
|
||||||
|
|
2
lib/ansible/plugins/cache/mongodb.py
vendored
2
lib/ansible/plugins/cache/mongodb.py
vendored
|
@ -31,7 +31,7 @@ DOCUMENTATION = '''
|
||||||
- name: ANSIBLE_CACHE_PLUGIN_PREFIX
|
- name: ANSIBLE_CACHE_PLUGIN_PREFIX
|
||||||
ini:
|
ini:
|
||||||
- key: fact_caching_prefix
|
- key: fact_caching_prefix
|
||||||
- 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
|
||||||
|
|
2
lib/ansible/plugins/cache/pickle.py
vendored
2
lib/ansible/plugins/cache/pickle.py
vendored
|
@ -30,7 +30,7 @@ DOCUMENTATION = '''
|
||||||
- name: ANSIBLE_CACHE_PLUGIN_PREFIX
|
- name: ANSIBLE_CACHE_PLUGIN_PREFIX
|
||||||
ini:
|
ini:
|
||||||
- key: fact_caching_prefix
|
- key: fact_caching_prefix
|
||||||
- section: defaults
|
section: defaults
|
||||||
_timeout:
|
_timeout:
|
||||||
default: 86400
|
default: 86400
|
||||||
description: Expiration timeout for the cache plugin data
|
description: Expiration timeout for the cache plugin data
|
||||||
|
|
2
lib/ansible/plugins/cache/redis.py
vendored
2
lib/ansible/plugins/cache/redis.py
vendored
|
@ -28,7 +28,7 @@ DOCUMENTATION = '''
|
||||||
- name: ANSIBLE_CACHE_PLUGIN_PREFIX
|
- name: ANSIBLE_CACHE_PLUGIN_PREFIX
|
||||||
ini:
|
ini:
|
||||||
- key: fact_caching_prefix
|
- key: fact_caching_prefix
|
||||||
- section: defaults
|
section: defaults
|
||||||
_timeout:
|
_timeout:
|
||||||
default: 86400
|
default: 86400
|
||||||
description: Expiration timeout for the cache plugin data
|
description: Expiration timeout for the cache plugin data
|
||||||
|
|
2
lib/ansible/plugins/cache/yaml.py
vendored
2
lib/ansible/plugins/cache/yaml.py
vendored
|
@ -30,7 +30,7 @@ DOCUMENTATION = '''
|
||||||
- name: ANSIBLE_CACHE_PLUGIN_PREFIX
|
- name: ANSIBLE_CACHE_PLUGIN_PREFIX
|
||||||
ini:
|
ini:
|
||||||
- key: fact_caching_prefix
|
- key: fact_caching_prefix
|
||||||
- section: defaults
|
section: defaults
|
||||||
_timeout:
|
_timeout:
|
||||||
default: 86400
|
default: 86400
|
||||||
description: Expiration timeout for the cache plugin data
|
description: Expiration timeout for the cache plugin data
|
||||||
|
|
Loading…
Reference in a new issue