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.
38 lines
832 B
YAML
38 lines
832 B
YAML
8 years ago
|
---
|
||
|
- debug: msg="START cli/sublevel.yaml"
|
||
|
|
||
|
- 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"
|
||
|
- "'ipv4 access-list test' in result.updates"
|
||
|
- "'10 permit ipv4 any any log' in result.updates"
|
||
|
|
||
|
- 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
|
||
|
|
||
|
- debug: msg="END cli/sublevel.yaml"
|