fix typos in various modules and docsite (#28747)
This commit is contained in:
parent
142869d266
commit
c97f4653be
5 changed files with 11 additions and 11 deletions
|
@ -54,7 +54,7 @@ Some modules execute command line utilities or are geared for executing commands
|
||||||
|
|
||||||
stderr_lines
|
stderr_lines
|
||||||
````````````
|
````````````
|
||||||
When c(stderr) is returned we also always provide this field which is a list of strings, one item per line from the original.
|
When `stderr` is returned we also always provide this field which is a list of strings, one item per line from the original.
|
||||||
|
|
||||||
stdout
|
stdout
|
||||||
``````
|
``````
|
||||||
|
@ -62,7 +62,7 @@ Some modules execute command line utilities or are geared for executing commands
|
||||||
|
|
||||||
stdout_lines
|
stdout_lines
|
||||||
````````````
|
````````````
|
||||||
When c(stdout) is returned, Ansible always provides a list of strings, each containing one item per line from the original output.
|
When `stdout` is returned, Ansible always provides a list of strings, each containing one item per line from the original output.
|
||||||
|
|
||||||
|
|
||||||
.. _internal_return_values:
|
.. _internal_return_values:
|
||||||
|
|
|
@ -126,7 +126,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Port number that the DB instance uses for connections. Used only when command=create or command=replicate.
|
- Port number that the DB instance uses for connections. Used only when command=create or command=replicate.
|
||||||
- Prior to 2.0 it always defaults to null and the API would use 3306, it had to be set to other DB default values when not using MySql.
|
- Prior to 2.0 it always defaults to null and the API would use 3306, it had to be set to other DB default values when not using MySql.
|
||||||
Starting at 2.0 it automatically defaults to what is expected for each c(db_engine).
|
Starting at 2.0 it automatically defaults to what is expected for each C(db_engine).
|
||||||
required: false
|
required: false
|
||||||
default: 3306 for mysql, 1521 for Oracle, 1433 for SQL Server, 5432 for PostgreSQL.
|
default: 3306 for mysql, 1521 for Oracle, 1433 for SQL Server, 5432 for PostgreSQL.
|
||||||
upgrade:
|
upgrade:
|
||||||
|
|
|
@ -22,7 +22,7 @@ short_description: Runs an arbitrary RPC over NetConf on an Juniper JUNOS device
|
||||||
description:
|
description:
|
||||||
- Sends a request to the remote device running JUNOS to execute the
|
- Sends a request to the remote device running JUNOS to execute the
|
||||||
specified RPC using the NetConf transport. The reply is then
|
specified RPC using the NetConf transport. The reply is then
|
||||||
returned to the playbook in the c(xml) key. If an alternate output
|
returned to the playbook in the C(xml) key. If an alternate output
|
||||||
format is requested, the reply is transformed to the requested output.
|
format is requested, the reply is transformed to the requested output.
|
||||||
extends_documentation_fragment: junos
|
extends_documentation_fragment: junos
|
||||||
options:
|
options:
|
||||||
|
|
|
@ -35,7 +35,7 @@ options:
|
||||||
|
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- state of the package, you can use "installed" as an alias for C(present) and removed as one for c(absent).
|
- state of the package, you can use "installed" as an alias for C(present) and removed as one for C(absent).
|
||||||
choices: [ 'present', 'absent', 'latest' ]
|
choices: [ 'present', 'absent', 'latest' ]
|
||||||
required: false
|
required: false
|
||||||
default: present
|
default: present
|
||||||
|
|
|
@ -11,20 +11,20 @@ options:
|
||||||
api_key:
|
api_key:
|
||||||
description:
|
description:
|
||||||
- API key of the Exoscale DNS API.
|
- API key of the Exoscale DNS API.
|
||||||
- Since 2.4, the ENV variable c(CLOUDSTACK_KEY) is used as default, when defined.
|
- Since 2.4, the ENV variable C(CLOUDSTACK_KEY) is used as default, when defined.
|
||||||
api_secret:
|
api_secret:
|
||||||
description:
|
description:
|
||||||
- Secret key of the Exoscale DNS API.
|
- Secret key of the Exoscale DNS API.
|
||||||
- Since 2.4, the ENV variable c(CLOUDSTACK_SECRET) is used as default, when defined.
|
- Since 2.4, the ENV variable C(CLOUDSTACK_SECRET) is used as default, when defined.
|
||||||
api_timeout:
|
api_timeout:
|
||||||
description:
|
description:
|
||||||
- HTTP timeout to Exoscale DNS API.
|
- HTTP timeout to Exoscale DNS API.
|
||||||
- Since 2.4, the ENV variable c(CLOUDSTACK_TIMEOUT) is used as default, when defined.
|
- Since 2.4, the ENV variable C(CLOUDSTACK_TIMEOUT) is used as default, when defined.
|
||||||
default: 10
|
default: 10
|
||||||
api_region:
|
api_region:
|
||||||
description:
|
description:
|
||||||
- Name of the ini section in the C(cloustack.ini) file.
|
- Name of the ini section in the C(cloustack.ini) file.
|
||||||
- Since 2.4, the ENV variable c(CLOUDSTACK_REGION) is used as default, when defined.
|
- Since 2.4, the ENV variable C(CLOUDSTACK_REGION) is used as default, when defined.
|
||||||
default: cloudstack
|
default: cloudstack
|
||||||
validate_certs:
|
validate_certs:
|
||||||
description:
|
description:
|
||||||
|
|
Loading…
Reference in a new issue