381263ad99
* Remove local from ios_config to avoid needing to add provider * ios_smoke should test all with local to pick up the slack
39 lines
948 B
YAML
39 lines
948 B
YAML
---
|
|
- debug: msg="START cli/sublevel.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: setup test
|
|
ios_config:
|
|
lines:
|
|
- 'no ip access-list extended test'
|
|
- 'no ip access-list standard test'
|
|
match: none
|
|
|
|
- name: configure sub level command
|
|
ios_config:
|
|
lines: ['permit ip any any log']
|
|
parents: ['ip access-list extended test']
|
|
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']
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: teardown
|
|
ios_config:
|
|
lines:
|
|
- 'no ip access-list extended test'
|
|
match: none
|
|
|
|
- debug: msg="END cli/sublevel.yaml on connection={{ ansible_connection }}"
|