2016-10-28 20:50:29 +02:00
|
|
|
---
|
2017-12-20 15:03:29 +01:00
|
|
|
- debug: msg="START cli/sublevel.yaml on connection={{ ansible_connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- name: setup test
|
|
|
|
ios_config:
|
|
|
|
lines:
|
|
|
|
- 'no ip access-list extended test'
|
|
|
|
- 'no ip access-list standard test'
|
|
|
|
match: none
|
2018-02-02 15:50:15 +01:00
|
|
|
provider: "{{ cli }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- name: configure sub level command
|
|
|
|
ios_config:
|
|
|
|
lines: ['permit ip any any log']
|
|
|
|
parents: ['ip access-list extended test']
|
2018-02-02 15:50:15 +01:00
|
|
|
provider: "{{ cli }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
- "'ip access-list extended test' in result.updates"
|
|
|
|
- "'permit ip any any log' in result.updates"
|
|
|
|
|
|
|
|
- name: configure sub level command idempotent check
|
|
|
|
ios_config:
|
|
|
|
lines: ['permit ip any any log']
|
|
|
|
parents: ['ip access-list extended test']
|
2018-02-02 15:50:15 +01:00
|
|
|
provider: "{{ cli }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
|
|
|
|
- name: teardown
|
|
|
|
ios_config:
|
|
|
|
lines:
|
|
|
|
- 'no ip access-list extended test'
|
|
|
|
match: none
|
2018-02-02 15:50:15 +01:00
|
|
|
provider: "{{ cli }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
2017-12-20 15:03:29 +01:00
|
|
|
- debug: msg="END cli/sublevel.yaml on connection={{ ansible_connection }}"
|