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.
59 lines
1.8 KiB
YAML
59 lines
1.8 KiB
YAML
---
|
|
- debug: msg="START cli/sublevel_exact.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: setup
|
|
iosxr_config:
|
|
commands:
|
|
- 10 permit ipv4 host 1.1.1.1 any log
|
|
- 20 permit ipv4 host 2.2.2.2 any log
|
|
- 30 permit ipv4 host 3.3.3.3 any log
|
|
- 40 permit ipv4 host 4.4.4.4 any log
|
|
- 50 permit ipv4 host 5.5.5.5 any log
|
|
parents: ['ipv4 access-list test']
|
|
before: ['no ipv4 access-list test']
|
|
match: none
|
|
|
|
- name: configure sub level command using exact match
|
|
iosxr_config:
|
|
commands:
|
|
- 10 permit ipv4 host 1.1.1.1 any log
|
|
- 20 permit ipv4 host 2.2.2.2 any log
|
|
- 30 permit ipv4 host 3.3.3.3 any log
|
|
- 40 permit ipv4 host 4.4.4.4 any log
|
|
parents: ['ipv4 access-list test']
|
|
match: exact
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'ipv4 access-list test' in result.commands"
|
|
- "'10 permit ipv4 host 1.1.1.1 any log' in result.commands"
|
|
- "'20 permit ipv4 host 2.2.2.2 any log' in result.commands"
|
|
- "'30 permit ipv4 host 3.3.3.3 any log' in result.commands"
|
|
- "'40 permit ipv4 host 4.4.4.4 any log' in result.commands"
|
|
- "'50 permit ipv4 host 5.5.5.5 any log' not in result.commands"
|
|
|
|
- name: check sub level command using exact match
|
|
iosxr_config:
|
|
commands:
|
|
- 10 permit ipv4 host 1.1.1.1 any log
|
|
- 20 permit ipv4 host 2.2.2.2 any log
|
|
- 30 permit ipv4 host 3.3.3.3 any log
|
|
- 40 permit ipv4 host 4.4.4.4 any log
|
|
- 50 permit ipv4 host 5.5.5.5 any log
|
|
parents: ['ipv4 access-list test']
|
|
match: exact
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: teardown
|
|
iosxr_config:
|
|
commands: ['no ipv4 access-list test']
|
|
match: none
|
|
|
|
- debug: msg="END cli/sublevel_exact.yaml on connection={{ ansible_connection }}"
|