Commit 0e55bd89 by Michael DeHaan

For values that are booleans in the module doc, the value in the doc section…

For values that are booleans in the module doc, the value in the doc section should be a boolean or truthiness
is engaged in the documentation formatting.  This fixes the update_cache default in the docs to the proper
value of "no"
parent 203a4f10
...@@ -42,18 +42,18 @@ options: ...@@ -42,18 +42,18 @@ options:
description: description:
- Run the equivalent of C(apt-get update) before the operation. Can be run as part of the package installation or as a separate step - Run the equivalent of C(apt-get update) before the operation. Can be run as part of the package installation or as a separate step
required: false required: false
default: "no" default: no
choices: [ "yes", "no" ] choices: [ "yes", "no" ]
cache_valid_time: cache_valid_time:
description: description:
- If C(update_cache) is specified and the last run is less or equal than I(cache_valid_time) seconds ago, the C(update_cache) gets skipped. - If C(update_cache) is specified and the last run is less or equal than I(cache_valid_time) seconds ago, the C(update_cache) gets skipped.
required: false required: false
default: "no" default: no
purge: purge:
description: description:
- Will force purging of configuration files if the module state is set to I(absent). - Will force purging of configuration files if the module state is set to I(absent).
required: false required: false
default: "no" default: no
choices: [ "yes", "no" ] choices: [ "yes", "no" ]
default_release: default_release:
description: description:
...@@ -64,7 +64,7 @@ options: ...@@ -64,7 +64,7 @@ options:
description: description:
- Corresponds to the C(--no-install-recommends) option for I(apt), default behavior works as apt's default behavior, C(no) does not install recommended packages. Suggested packages are never installed. - Corresponds to the C(--no-install-recommends) option for I(apt), default behavior works as apt's default behavior, C(no) does not install recommended packages. Suggested packages are never installed.
required: false required: false
default: "yes" default: yes
choices: [ "yes", "no" ] choices: [ "yes", "no" ]
force: force:
description: description:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment