2016-10-28 20:50:29 +02:00
|
|
|
---
|
2017-12-19 21:49:49 +01:00
|
|
|
- debug: msg="START cli/sublevel.yaml on connection={{ ansible_connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- name: setup
|
|
|
|
eos_config:
|
|
|
|
lines: no vlan 10
|
|
|
|
match: none
|
|
|
|
provider: "{{ cli }}"
|
2017-12-19 21:49:49 +01:00
|
|
|
become: yes
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- name: configure sub level command
|
|
|
|
eos_config:
|
|
|
|
lines: name test
|
|
|
|
parents: vlan 10
|
|
|
|
provider: "{{ cli }}"
|
2017-12-19 21:49:49 +01:00
|
|
|
become: yes
|
2016-10-28 20:50:29 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
- "'vlan 10' in result.updates"
|
|
|
|
- "'name test' in result.updates"
|
|
|
|
|
|
|
|
- name: configure sub level command idempotent check
|
|
|
|
eos_config:
|
|
|
|
lines: name test
|
|
|
|
parents: vlan 10
|
|
|
|
provider: "{{ cli }}"
|
2017-12-19 21:49:49 +01:00
|
|
|
become: yes
|
2016-10-28 20:50:29 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
|
|
|
|
- name: teardown
|
|
|
|
eos_config:
|
|
|
|
lines: no vlan 10
|
|
|
|
match: none
|
|
|
|
provider: "{{ cli }}"
|
2017-12-19 21:49:49 +01:00
|
|
|
become: yes
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
|
2017-12-19 21:49:49 +01:00
|
|
|
- debug: msg="END cli/sublevel.yaml on connection={{ ansible_connection }}"
|