2016-10-28 20:50:29 +02:00
|
|
|
---
|
2017-12-20 17:26:09 +01:00
|
|
|
- debug: msg="START cli/toplevel.yaml on connection={{ ansible_connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- name: setup
|
|
|
|
iosxr_config:
|
2017-01-09 18:21:04 +01:00
|
|
|
commands: ['hostname {{ inventory_hostname_short }}']
|
2016-10-28 20:50:29 +02:00
|
|
|
match: none
|
|
|
|
|
|
|
|
- name: configure top level command
|
|
|
|
iosxr_config:
|
|
|
|
commands: ['hostname foo']
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
2017-03-01 14:10:40 +01:00
|
|
|
- "'hostname foo' in result.commands"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- name: configure top level command idempotent check
|
|
|
|
iosxr_config:
|
|
|
|
commands: ['hostname foo']
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
|
|
|
|
- name: teardown
|
|
|
|
iosxr_config:
|
2017-01-09 18:21:04 +01:00
|
|
|
commands: ['hostname {{ inventory_hostname_short }}']
|
2016-10-28 20:50:29 +02:00
|
|
|
match: none
|
|
|
|
|
2017-12-20 17:26:09 +01:00
|
|
|
- debug: msg="END cli/toplevel.yaml on connection={{ ansible_connection }}"
|