mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-10 10:19:10 -07:00
Minor fixes (#25059)
1) Examples: Remove double space between "option:" and "value" 2) Documentation: Fix rendering usses 3) Documentation: Remove `required: true` to match argspec
This commit is contained in:
parent
ce584571e8
commit
3740ad2828
27 changed files with 287 additions and 291 deletions
|
@ -52,7 +52,6 @@ options:
|
|||
by the configured retries, the task fails. See examples.
|
||||
required: false
|
||||
default: null
|
||||
aliases: ['waitfor']
|
||||
match:
|
||||
description:
|
||||
- The I(match) argument is used in conjunction with the
|
||||
|
@ -201,7 +200,7 @@ def main():
|
|||
# { command: <str>, output: <str>, prompt: <str>, response: <str> }
|
||||
commands=dict(type='list', required=True),
|
||||
|
||||
wait_for=dict(type='list', aliases=['waitfor']),
|
||||
wait_for=dict(type='list'),
|
||||
match=dict(default='all', choices=['any', 'all']),
|
||||
|
||||
retries=dict(default=10, type='int'),
|
||||
|
|
|
@ -32,8 +32,8 @@ author:
|
|||
- Zhijin Zhou (@CloudEngine-Ansible)
|
||||
notes:
|
||||
- The relevant configurations will be deleted if DLDP is disabled using enable=disable.
|
||||
- When using auth_mode=none, it will restore the default DLDP authentication mode(By default,
|
||||
DLDP packets are not authenticated.).
|
||||
- When using auth_mode=none, it will restore the default DLDP authentication mode. By default,
|
||||
DLDP packets are not authenticated.
|
||||
- By default, the working mode of DLDP is enhance, so you are advised to use work_mode=enhance to restore defualt
|
||||
DLDP working mode.
|
||||
- The default interval for sending Advertisement packets is 5 seconds, so you are advised to use time_interval=5 to
|
||||
|
|
|
@ -57,18 +57,18 @@ options:
|
|||
description:
|
||||
- Configures a route distinguisher (RD) for a BD EVPN instance.
|
||||
The format of an RD can be as follows
|
||||
1) 2-byte AS number:4-byte user-defined number, for example, 1:3. An AS number is an integer ranging from
|
||||
- 1) 2-byte AS number:4-byte user-defined number, for example, 1:3. An AS number is an integer ranging from
|
||||
0 to 65535, and a user-defined number is an integer ranging from 0 to 4294967295. The AS and user-defined
|
||||
numbers cannot be both 0s. This means that an RD cannot be 0:0.
|
||||
2) Integral 4-byte AS number:2-byte user-defined number, for example, 65537:3. An AS number is an integer
|
||||
- 2) Integral 4-byte AS number:2-byte user-defined number, for example, 65537:3. An AS number is an integer
|
||||
ranging from 65536 to 4294967295, and a user-defined number is an integer ranging from 0 to 65535.
|
||||
3) 4-byte AS number in dotted notation:2-byte user-defined number, for example, 0.0:3 or 0.1:0. A 4-byte
|
||||
- 3) 4-byte AS number in dotted notation:2-byte user-defined number, for example, 0.0:3 or 0.1:0. A 4-byte
|
||||
AS number in dotted notation is in the format of x.y, where x and y are integers ranging from 0 to 65535.
|
||||
4) A user-defined number is an integer ranging from 0 to 65535. The AS and user-defined numbers cannot be
|
||||
- 4) A user-defined number is an integer ranging from 0 to 65535. The AS and user-defined numbers cannot be
|
||||
both 0s. This means that an RD cannot be 0.0:0.
|
||||
5) 32-bit IP address:2-byte user-defined number. For example, 192.168.122.15:1. An IP address ranges from
|
||||
- 5) 32-bit IP address:2-byte user-defined number. For example, 192.168.122.15:1. An IP address ranges from
|
||||
0.0.0.0 to 255.255.255.255, and a user-defined number is an integer ranging from 0 to 65535.
|
||||
6) 'auto' specifies the RD that is automatically generated.
|
||||
- 6) 'auto' specifies the RD that is automatically generated.
|
||||
required: false
|
||||
default: null
|
||||
vpn_target_both:
|
||||
|
|
|
@ -33,7 +33,6 @@ options:
|
|||
confirm:
|
||||
description:
|
||||
- Safeguard boolean. Set to true if you're sure you want to reboot.
|
||||
required: true
|
||||
type: bool
|
||||
default: false
|
||||
save_config:
|
||||
|
|
|
@ -24,7 +24,7 @@ DOCUMENTATION = '''
|
|||
---
|
||||
module: ce_snmp_user
|
||||
version_added: "2.4"
|
||||
short_description: Manages SNMP user configuration.
|
||||
short_description: Manages SNMP user configuration on HUAWEI CloudEngine switches.
|
||||
description:
|
||||
- Manages SNMP user configurations on CloudEngine switches.
|
||||
author:
|
||||
|
|
|
@ -63,8 +63,6 @@ options:
|
|||
description:
|
||||
- If C(mode=trunk), used as the VLAN range to ADD or REMOVE
|
||||
from the trunk, such as 2-10 or 2,5,10-15, etc.
|
||||
aliases:
|
||||
- trunk_add_vlans
|
||||
required: false
|
||||
default: null
|
||||
state:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue