mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
876 B
YAML
42 lines
876 B
YAML
8 years ago
|
---
|
||
|
- 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"
|