Doc fixes for junos lldp modules (#28228)

This commit is contained in:
Ganesh Nalawade 2017-08-16 09:32:39 +05:30 committed by GitHub
parent b7d886840b
commit 4caddad224
2 changed files with 0 additions and 9 deletions

View file

@ -145,7 +145,6 @@ def main():
interval=dict(type='int'),
transmit_delay=dict(type='int'),
hold_multiplier=dict(type='int'),
purge=dict(default=False, type='bool'),
state=dict(default='present', choices=['present', 'absent', 'enabled', 'disabled']),
active=dict(default=True, type='bool')
)

View file

@ -26,12 +26,6 @@ options:
name:
description:
- 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:
description:
- Value of C(present) ensures given LLDP configured on given I(interfaces)
@ -115,8 +109,6 @@ def main():
"""
argument_spec = dict(
name=dict(),
aggregate=dict(type='list'),
purge=dict(default=False, type='bool'),
state=dict(default='present', choices=['present', 'absent', 'enabled', 'disabled']),
active=dict(default=True, type='bool')
)