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.
|
|
|
---
|
|
|
|
- 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
|
|
|
|
provider: "{{ cli }}"
|
|
|
|
|
|
|
|
- name: configure sub level command
|
|
|
|
ios_config:
|
|
|
|
lines: ['permit ip any any log']
|
|
|
|
parents: ['ip access-list extended test']
|
|
|
|
provider: "{{ cli }}"
|
|
|
|
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']
|
|
|
|
provider: "{{ cli }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
|
|
|
|
- name: teardown
|
|
|
|
ios_config:
|
|
|
|
lines:
|
|
|
|
- 'no ip access-list extended test'
|
|
|
|
match: none
|
|
|
|
provider: "{{ cli }}"
|
|
|
|
|
|
|
|
- debug: msg="END cli/sublevel.yaml on connection={{ ansible_connection }}"
|