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/toplevel_after.yaml on connection={{ ansible_connection }}"
|
|
|
|
|
|
|
|
- name: setup
|
|
|
|
iosxr_config:
|
|
|
|
commands:
|
|
|
|
- "no cdp"
|
|
|
|
- "hostname {{ inventory_hostname_short }}"
|
|
|
|
match: none
|
|
|
|
|
|
|
|
- name: configure top level command with before
|
|
|
|
iosxr_config:
|
|
|
|
commands: ['hostname foo']
|
|
|
|
after: ['cdp']
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
- "'hostname foo' in result.commands"
|
|
|
|
- "'cdp' in result.commands"
|
|
|
|
|
|
|
|
- name: configure top level command with before idempotent check
|
|
|
|
iosxr_config:
|
|
|
|
commands: ['hostname foo']
|
|
|
|
after: ['no cdp']
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
|
|
|
|
- name: teardown
|
|
|
|
iosxr_config:
|
|
|
|
commands:
|
|
|
|
- "no cdp"
|
|
|
|
- "hostname {{ inventory_hostname_short }}"
|
|
|
|
match: none
|
|
|
|
|
|
|
|
- debug: msg="END cli/toplevel_after.yaml on connection={{ ansible_connection }}"
|