mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixes broken documentation in two modules (#3150)
The modules listed in this PR were using YAML that resulted in blockquote tages being inserted into the generated RestructedText. This PR fixes that so that the documentation once again looks correct
This commit is contained in:
parent
951f1d280c
commit
79895061b4
2 changed files with 8 additions and 7 deletions
|
@ -118,27 +118,27 @@ EXAMPLES = '''
|
||||||
|
|
||||||
RETURN = '''
|
RETURN = '''
|
||||||
allow:
|
allow:
|
||||||
description: |
|
description: >
|
||||||
Specifies, if you have enabled SSH access, the IP address or address
|
Specifies, if you have enabled SSH access, the IP address or address
|
||||||
range for other systems that can use SSH to communicate with this
|
range for other systems that can use SSH to communicate with this
|
||||||
system.
|
system.
|
||||||
returned: changed
|
returned: changed
|
||||||
type: list
|
type: string
|
||||||
sample: "192.168.*.*"
|
sample: "192.0.2.*"
|
||||||
banner:
|
banner:
|
||||||
description: Whether the banner is enabled or not.
|
description: Whether the banner is enabled or not.
|
||||||
returned: changed
|
returned: changed
|
||||||
type: string
|
type: string
|
||||||
sample: "true"
|
sample: "true"
|
||||||
banner_text:
|
banner_text:
|
||||||
description: |
|
description: >
|
||||||
Specifies the text included on the pre-login banner that
|
Specifies the text included on the pre-login banner that
|
||||||
displays when a user attempts to login to the system using SSH.
|
displays when a user attempts to login to the system using SSH.
|
||||||
returned: changed and success
|
returned: changed and success
|
||||||
type: string
|
type: string
|
||||||
sample: "This is a corporate device. Connecting to it without..."
|
sample: "This is a corporate device. Connecting to it without..."
|
||||||
inactivity_timeout:
|
inactivity_timeout:
|
||||||
description: |
|
description: >
|
||||||
The number of seconds before inactivity causes an SSH.
|
The number of seconds before inactivity causes an SSH.
|
||||||
session to log out
|
session to log out
|
||||||
returned: changed
|
returned: changed
|
||||||
|
|
|
@ -46,12 +46,13 @@ options:
|
||||||
- The unique identifying integer representing the route domain.
|
- The unique identifying integer representing the route domain.
|
||||||
required: true
|
required: true
|
||||||
parent:
|
parent:
|
||||||
description: |
|
description:
|
||||||
Specifies the route domain the system searches when it cannot
|
Specifies the route domain the system searches when it cannot
|
||||||
find a route in the configured domain.
|
find a route in the configured domain.
|
||||||
|
required: false
|
||||||
routing_protocol:
|
routing_protocol:
|
||||||
description:
|
description:
|
||||||
- Dynamic routing protocols for the system to use in the route domain.
|
- Dynamic routing protocols for the system to use in the route domain.
|
||||||
choices:
|
choices:
|
||||||
- BFD
|
- BFD
|
||||||
- BGP
|
- BGP
|
||||||
|
|
Loading…
Add table
Reference in a new issue