2016-10-28 20:50:29 +02:00
|
|
|
---
|
2017-08-21 17:15:25 +02:00
|
|
|
- debug: msg='START {{ connection.transport }}/toplevel.yaml'
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- name: setup
|
|
|
|
nxos_config:
|
2017-09-08 12:13:35 +02:00
|
|
|
lines: hostname switch
|
2017-08-21 17:15:25 +02:00
|
|
|
provider: "{{ connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
match: none
|
|
|
|
|
|
|
|
- name: configure top level command
|
|
|
|
nxos_config:
|
|
|
|
lines: hostname foo
|
2017-08-21 17:15:25 +02:00
|
|
|
provider: "{{ connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
- "'hostname foo' in result.updates"
|
|
|
|
|
|
|
|
- name: configure top level command idempotent check
|
|
|
|
nxos_config:
|
|
|
|
lines: hostname foo
|
2017-08-21 17:15:25 +02:00
|
|
|
provider: "{{ connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
|
|
|
|
- name: teardown
|
|
|
|
nxos_config:
|
2017-09-08 12:13:35 +02:00
|
|
|
lines: hostname switch
|
2017-08-21 17:15:25 +02:00
|
|
|
provider: "{{ connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
match: none
|
|
|
|
|
2017-08-21 17:15:25 +02:00
|
|
|
- debug: msg='END {{ connection.transport }}/toplevel.yaml'
|