2016-10-28 20:50:29 +02:00
|
|
|
---
|
2017-12-20 17:26:09 +01:00
|
|
|
- debug: msg="START cli/sublevel.yaml on connection={{ ansible_connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- name: setup
|
|
|
|
iosxr_config:
|
|
|
|
commands: ['no ipv4 access-list test']
|
|
|
|
match: none
|
|
|
|
ignore_errors: yes
|
|
|
|
|
|
|
|
- name: configure sub level command
|
|
|
|
iosxr_config:
|
|
|
|
commands: ['10 permit ipv4 any any log']
|
|
|
|
parents: ['ipv4 access-list test']
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
2017-03-01 14:10:40 +01:00
|
|
|
- "'ipv4 access-list test' in result.commands"
|
|
|
|
- "'10 permit ipv4 any any log' in result.commands"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- name: configure sub level command idempotent check
|
|
|
|
iosxr_config:
|
|
|
|
commands: ['10 permit ipv4 any any log']
|
|
|
|
parents: ['ipv4 access-list test']
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
|
|
|
|
- name: teardown
|
|
|
|
iosxr_config:
|
|
|
|
commands: ['no ipv4 access-list test']
|
|
|
|
match: none
|
|
|
|
|
2017-12-20 17:26:09 +01:00
|
|
|
- debug: msg="END cli/sublevel.yaml on connection={{ ansible_connection }}"
|