mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
42 lines
876 B
YAML
42 lines
876 B
YAML
|
---
|
||
|
- debug: msg="START eapi/sublevel.yaml"
|
||
|
|
||
|
- name: setup
|
||
|
eos_config:
|
||
|
lines: no ip access-list test
|
||
|
match: none
|
||
|
provider: "{{ eapi }}"
|
||
|
|
||
|
- name: configure sub level command
|
||
|
eos_config:
|
||
|
lines: 10 permit ip any any log
|
||
|
parents: ip access-list test
|
||
|
after: exit
|
||
|
provider: "{{ eapi }}"
|
||
|
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
|
||
|
provider: "{{ eapi }}"
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == false"
|
||
|
|
||
|
- name: teardown
|
||
|
eos_config:
|
||
|
lines: no ip access-list test
|
||
|
match: none
|
||
|
provider: "{{ cli }}"
|
||
|
|
||
|
- debug: msg="END eapi/sublevel.yaml"
|