mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-26 14:41:23 -07:00
Doc fixes for junos lldp modules (#28228)
This commit is contained in:
parent
b7d886840b
commit
4caddad224
2 changed files with 0 additions and 9 deletions
|
@ -145,7 +145,6 @@ def main():
|
||||||
interval=dict(type='int'),
|
interval=dict(type='int'),
|
||||||
transmit_delay=dict(type='int'),
|
transmit_delay=dict(type='int'),
|
||||||
hold_multiplier=dict(type='int'),
|
hold_multiplier=dict(type='int'),
|
||||||
purge=dict(default=False, type='bool'),
|
|
||||||
state=dict(default='present', choices=['present', 'absent', 'enabled', 'disabled']),
|
state=dict(default='present', choices=['present', 'absent', 'enabled', 'disabled']),
|
||||||
active=dict(default=True, type='bool')
|
active=dict(default=True, type='bool')
|
||||||
)
|
)
|
||||||
|
|
|
@ -26,12 +26,6 @@ options:
|
||||||
name:
|
name:
|
||||||
description:
|
description:
|
||||||
- Name of the interface LLDP should be configured on.
|
- Name of the interface LLDP should be configured on.
|
||||||
aggregate:
|
|
||||||
description: List of interfaces LLDP should be configured on.
|
|
||||||
purge:
|
|
||||||
description:
|
|
||||||
- Purge interfaces not defined in the aggregate parameter.
|
|
||||||
default: no
|
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- Value of C(present) ensures given LLDP configured on given I(interfaces)
|
- Value of C(present) ensures given LLDP configured on given I(interfaces)
|
||||||
|
@ -115,8 +109,6 @@ def main():
|
||||||
"""
|
"""
|
||||||
argument_spec = dict(
|
argument_spec = dict(
|
||||||
name=dict(),
|
name=dict(),
|
||||||
aggregate=dict(type='list'),
|
|
||||||
purge=dict(default=False, type='bool'),
|
|
||||||
state=dict(default='present', choices=['present', 'absent', 'enabled', 'disabled']),
|
state=dict(default='present', choices=['present', 'absent', 'enabled', 'disabled']),
|
||||||
active=dict(default=True, type='bool')
|
active=dict(default=True, type='bool')
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue