diff options
author | Rohit Thakur <rohitthakur2590@outlook.com> | 2020-05-06 17:32:09 +0530 |
---|---|---|
committer | Rohit Thakur <rohitthakur2590@outlook.com> | 2020-05-06 17:32:09 +0530 |
commit | df5f503a3603164cc4ba74723aa39e7f33be6605 (patch) | |
tree | 4affb38a217cde4e1552d224f45aecd29b11969d /plugins | |
parent | b125abe2ac135589a2c3455ef74e1580f435489c (diff) | |
download | vyos-ansible-old-df5f503a3603164cc4ba74723aa39e7f33be6605.tar.gz vyos-ansible-old-df5f503a3603164cc4ba74723aa39e7f33be6605.zip |
common comments incorporated
Signed-off-by: Rohit Thakur <rohitthakur2590@outlook.com>
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/modules/vyos_lldp_interfaces.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/plugins/modules/vyos_lldp_interfaces.py b/plugins/modules/vyos_lldp_interfaces.py index 9567511..b26da49 100644 --- a/plugins/modules/vyos_lldp_interfaces.py +++ b/plugins/modules/vyos_lldp_interfaces.py @@ -30,11 +30,7 @@ from __future__ import absolute_import, division, print_function __metaclass__ = type -ANSIBLE_METADATA = { - "metadata_version": "1.1", - "status": ["preview"], - "supported_by": "network", -} +ANSIBLE_METADATA = {"metadata_version": "1.1", "supported_by": "Ansible"} DOCUMENTATION = """module: vyos_lldp_interfaces short_description: LLDP interfaces resource module @@ -42,6 +38,7 @@ description: This module manages attributes of lldp interfaces on VyOS network d notes: - Tested against VyOS 1.1.8 (helium). - This module works with connection C(network_cli). See L(the VyOS OS Platform Options,../network/user_guide/platform_vyos.html). +version_added: "1.0.0" author: - Rohit Thakur (@rohitthakur2590) options: @@ -120,7 +117,6 @@ options: it into Ansible structured data as per the resource module's argspec and the value is then returned in the I(parsed) key within the result. type: str - version_added: "1.0.0" state: description: - The state of the configuration after module completion. |