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
780 B
YAML
38 lines
780 B
YAML
8 years ago
|
---
|
||
|
- debug: msg="START nxapi/sublevel.yaml"
|
||
|
|
||
|
- name: setup
|
||
|
nxos_config:
|
||
|
lines: no ip access-list test
|
||
|
match: none
|
||
|
ignore_errors: yes
|
||
|
|
||
|
- name: configure sub level command
|
||
|
nxos_config:
|
||
|
lines: 10 permit ip any any log
|
||
|
parents: ip access-list test
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == true"
|
||
|
- "'ip access-list test' in result.updates"
|
||
|
- "'10 permit ip any any log' in result.updates"
|
||
|
|
||
|
- name: configure sub level command idempotent check
|
||
|
nxos_config:
|
||
|
lines: 10 permit ip any any log
|
||
|
parents: ip access-list test
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == false"
|
||
|
|
||
|
- name: teardown
|
||
|
nxos_config:
|
||
|
lines: no ip access-list test
|
||
|
match: none
|
||
|
|
||
|
- debug: msg="END nxapi/sublevel.yaml"
|