diff options
author | Rohit Thakur <rohitthakur2590@outlook.com> | 2020-05-06 17:23:05 +0530 |
---|---|---|
committer | Rohit Thakur <rohitthakur2590@outlook.com> | 2020-05-06 17:23:05 +0530 |
commit | aea790205c4a83c278cc60252a61c2b632e01a98 (patch) | |
tree | 297b7763c025aef43fe8017783ad5f195bc7e316 /plugins | |
parent | fb6934cf290a3020bed292ae4f7dae7bd2ab28cf (diff) | |
download | vyos.vyos-aea790205c4a83c278cc60252a61c2b632e01a98.tar.gz vyos.vyos-aea790205c4a83c278cc60252a61c2b632e01a98.zip |
common comments incorporated
Signed-off-by: Rohit Thakur <rohitthakur2590@outlook.com>
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/modules/vyos_interfaces.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/plugins/modules/vyos_interfaces.py b/plugins/modules/vyos_interfaces.py index d15e5d7..6730e30 100644 --- a/plugins/modules/vyos_interfaces.py +++ b/plugins/modules/vyos_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_interfaces short_description: Interfaces resource module @@ -45,6 +41,7 @@ description: 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: - Nilashish Chakraborty (@nilashishc) - Rohit Thakur (@rohitthakur2590) @@ -130,7 +127,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. |