2016-10-28 20:50:29 +02:00
|
|
|
---
|
2018-01-05 23:01:45 +01:00
|
|
|
- debug: msg="START connection={{ ansible_connection }}/nonidempotent.yaml"
|
|
|
|
- debug: msg="Using provider={{ connection.transport }}"
|
|
|
|
when: ansible_connection == "local"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- name: setup
|
|
|
|
nxos_config:
|
2017-09-08 13:56:09 +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
|
|
|
match: strict
|
|
|
|
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
|
|
|
match: strict
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
|
|
|
|
- name: teardown
|
|
|
|
nxos_config:
|
2017-09-08 13:56:09 +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
|
|
|
|
|
2018-01-05 23:01:45 +01:00
|
|
|
- debug: msg="END connection={{ ansible_connection }}/nonidempotent.yaml"
|