mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
Remove default description in network DI modules (#28411)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
---
|
||||
- debug: msg="START ios_interface netconf/basic.yaml"
|
||||
- debug: msg="START ios_interface cli/basic.yaml"
|
||||
|
||||
- name: Configure interface (setup)
|
||||
ios_interface:
|
||||
@@ -46,7 +46,6 @@
|
||||
name: GigabitEthernet0/2
|
||||
description: test-interface
|
||||
speed: 100
|
||||
duplex: half
|
||||
mtu: 512
|
||||
state: present
|
||||
authorize: yes
|
||||
@@ -59,7 +58,6 @@
|
||||
- '"interface GigabitEthernet0/2" in result.commands'
|
||||
- '"description test-interface" in result.commands'
|
||||
- '"speed 100" in result.commands'
|
||||
- '"duplex half" in result.commands'
|
||||
- '"mtu 512" in result.commands'
|
||||
|
||||
- name: Change interface parameters
|
||||
@@ -67,7 +65,7 @@
|
||||
name: GigabitEthernet0/2
|
||||
description: test-interface-1
|
||||
speed: 10
|
||||
duplex: full
|
||||
duplex: half
|
||||
mtu: 256
|
||||
state: present
|
||||
authorize: yes
|
||||
@@ -80,38 +78,9 @@
|
||||
- '"interface GigabitEthernet0/2" in result.commands'
|
||||
- '"description test-interface-1" in result.commands'
|
||||
- '"speed 10" in result.commands'
|
||||
- '"duplex full" in result.commands'
|
||||
- '"duplex half" in result.commands'
|
||||
- '"mtu 256" in result.commands'
|
||||
|
||||
- name: Delete interface parameters
|
||||
ios_interface:
|
||||
name: GigabitEthernet0/2
|
||||
state: present
|
||||
authorize: yes
|
||||
provider: "{{ cli }}"
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- 'result.changed == true'
|
||||
- '"interface GigabitEthernet0/2" in result.commands'
|
||||
- '"description configured by ios_interface" in result.commands'
|
||||
- '"no speed 10" in result.commands'
|
||||
- '"no duplex full" in result.commands'
|
||||
- '"no mtu 256" in result.commands'
|
||||
|
||||
- name: Delete interface parameters (idempotent)
|
||||
ios_interface:
|
||||
name: GigabitEthernet0/2
|
||||
state: present
|
||||
authorize: yes
|
||||
provider: "{{ cli }}"
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- 'result.changed == false'
|
||||
|
||||
- name: Disable interface
|
||||
ios_interface:
|
||||
name: GigabitEthernet0/2
|
||||
@@ -145,7 +114,7 @@
|
||||
name: GigabitEthernet0/1
|
||||
description: test-interface-initial
|
||||
speed: 100
|
||||
duplex: full
|
||||
duplex: half
|
||||
mtu: 516
|
||||
state: present
|
||||
authorize: yes
|
||||
@@ -194,31 +163,6 @@
|
||||
that:
|
||||
- 'result.changed == false'
|
||||
|
||||
|
||||
- name: Change interface parameters in aggregate
|
||||
ios_interface:
|
||||
aggregate:
|
||||
- { name: GigabitEthernet0/1 }
|
||||
- { name: GigabitEthernet0/2 }
|
||||
state: present
|
||||
authorize: yes
|
||||
provider: "{{ cli }}"
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- 'result.changed == true'
|
||||
- '"interface GigabitEthernet0/1" in result.commands'
|
||||
- '"no speed 100" in result.commands'
|
||||
- '"description configured by ios_interface" in result.commands'
|
||||
- '"no duplex full" in result.commands'
|
||||
- '"no mtu 256" in result.commands'
|
||||
- '"interface GigabitEthernet0/2" in result.commands'
|
||||
- '"no speed 100" in result.commands'
|
||||
- '"description configured by ios_interface" in result.commands'
|
||||
- '"no duplex full" in result.commands'
|
||||
- '"no mtu 516" in result.commands'
|
||||
|
||||
- name: Disable interface aggregate
|
||||
ios_interface:
|
||||
aggregate:
|
||||
@@ -257,6 +201,14 @@
|
||||
- '"interface GigabitEthernet0/2" in result.commands'
|
||||
- '"no shutdown" in result.commands'
|
||||
|
||||
- name: loopback interface setup
|
||||
ios_interface:
|
||||
aggregate:
|
||||
- name: Loopback9
|
||||
- name: Loopback10
|
||||
state: absent
|
||||
authorize: yes
|
||||
|
||||
- name: Create loopback interface aggregate
|
||||
ios_interface:
|
||||
aggregate:
|
||||
@@ -271,9 +223,7 @@
|
||||
that:
|
||||
- 'result.changed == true'
|
||||
- '"interface Loopback9" in result.commands'
|
||||
- '"description configured by ios_interface" in result.commands'
|
||||
- '"interface Loopback10" in result.commands'
|
||||
- '"description configured by ios_interface" in result.commands'
|
||||
|
||||
- name: Delete loopback interface aggregate
|
||||
ios_interface:
|
||||
|
||||
Reference in New Issue
Block a user