2016-10-28 20:50:29 +02:00
|
|
|
---
|
|
|
|
- debug: msg="START eapi/sublevel.yaml"
|
|
|
|
|
|
|
|
- name: setup
|
|
|
|
eos_config:
|
|
|
|
lines: no ip access-list test
|
|
|
|
match: none
|
2018-05-29 20:18:03 +02:00
|
|
|
become: yes
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- name: configure sub level command
|
|
|
|
eos_config:
|
|
|
|
lines: 10 permit ip any any log
|
|
|
|
parents: ip access-list test
|
|
|
|
after: exit
|
2018-05-29 20:18:03 +02:00
|
|
|
become: yes
|
2016-10-28 20:50:29 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
- "'ip access-list test' in result.updates"
|
|
|
|
- "'10 permit ip any any log' in result.updates"
|
|
|
|
|
|
|
|
- name: configure sub level command idempotent check
|
|
|
|
eos_config:
|
|
|
|
lines: 10 permit ip any any log
|
|
|
|
parents: ip access-list test
|
2018-05-29 20:18:03 +02:00
|
|
|
become: yes
|
2016-10-28 20:50:29 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
|
|
|
|
- name: teardown
|
|
|
|
eos_config:
|
|
|
|
lines: no ip access-list test
|
|
|
|
match: none
|
2018-05-29 20:18:03 +02:00
|
|
|
become: yes
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- debug: msg="END eapi/sublevel.yaml"
|