Doc fixes for junos lldp modules (#28228)

pull/20053/merge
Ganesh Nalawade 7 years ago committed by GitHub
parent b7d886840b
commit 4caddad224

@ -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…
Cancel
Save