diff options
4 files changed, 5 insertions, 35 deletions
| diff --git a/plugins/modules/vyos_lldp_interfaces.py b/plugins/modules/vyos_lldp_interfaces.py index 95675112..b26da49e 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. diff --git a/tests/integration/targets/vyos_lldp_interfaces/tests/cli/gathered.yaml b/tests/integration/targets/vyos_lldp_interfaces/tests/cli/gathered.yaml index d440b534..30b804a5 100644 --- a/tests/integration/targets/vyos_lldp_interfaces/tests/cli/gathered.yaml +++ b/tests/integration/targets/vyos_lldp_interfaces/tests/cli/gathered.yaml @@ -9,7 +9,7 @@  - block: -    - name: Merge the provided configuration with the exisiting running configuration +    - name: Gather the provided configuration with the exisiting running configuration        register: result        vyos.vyos.vyos_lldp_interfaces: &id001          config: @@ -20,15 +20,6 @@          that:            - "{{ populate | symmetric_difference(result['gathered']) |length == 0\              \ }}" - -    - name: Gather the existing running configuration (IDEMPOTENT) -      register: result -      vyos.vyos.vyos_lldp_interfaces: *id001 - -    - name: Assert that the previous task was idempotent -      assert: -        that: -          - result['changed'] == false    always:      - include_tasks: _remove_config.yaml diff --git a/tests/integration/targets/vyos_lldp_interfaces/tests/cli/parsed.yaml b/tests/integration/targets/vyos_lldp_interfaces/tests/cli/parsed.yaml index 7842152f..c549ce7d 100644 --- a/tests/integration/targets/vyos_lldp_interfaces/tests/cli/parsed.yaml +++ b/tests/integration/targets/vyos_lldp_interfaces/tests/cli/parsed.yaml @@ -19,7 +19,7 @@      - name: Provide the running configuration for parsing (config to be parsed)        register: result -      vyos.vyos.vyos_lldp_interfaces: &id001 +      vyos.vyos.vyos_lldp_interfaces:          running_config: "{{ lookup('file', '_parsed_config.cfg') }}"          state: parsed @@ -28,14 +28,6 @@          that: "{{ ansible_facts['network_resources']['lldp_interfaces'] | symmetric_difference(result['parsed'])\            \ |length == 0 }}" -    - name: Gather the existing running configuration (IDEMPOTENT) -      register: result -      vyos.vyos.vyos_lldp_interfaces: *id001 - -    - name: Assert that the previous task was idempotent -      assert: -        that: -          - result['changed'] == false    always:      - include_tasks: _remove_config.yaml diff --git a/tests/integration/targets/vyos_lldp_interfaces/tests/cli/rendered.yaml b/tests/integration/targets/vyos_lldp_interfaces/tests/cli/rendered.yaml index 6bb9f5a0..d69e1c55 100644 --- a/tests/integration/targets/vyos_lldp_interfaces/tests/cli/rendered.yaml +++ b/tests/integration/targets/vyos_lldp_interfaces/tests/cli/rendered.yaml @@ -11,7 +11,7 @@      - name: Structure provided configuration into device specific commands        register: result -      vyos.vyos.vyos_lldp_interfaces: &id001 +      vyos.vyos.vyos_lldp_interfaces:          config:            - name: eth1              location: @@ -34,15 +34,6 @@          that:            - "{{ rendered['commands'] | symmetric_difference(result['rendered'])\              \ |length == 0 }}" - -    - name: Structure provided configuration into device specific commands (IDEMPOTENT) -      register: result -      vyos.vyos.vyos_lldp_interfaces: *id001 - -    - name: Assert that the previous task was idempotent -      assert: -        that: -          - result['changed'] == false    always:      - include_tasks: _remove_config.yaml | 
