2016-10-28 20:50:29 +02:00
|
|
|
---
|
|
|
|
- debug: msg="START eapi/toplevel.yaml"
|
|
|
|
|
|
|
|
- name: setup
|
|
|
|
eos_config:
|
2017-01-09 18:21:04 +01:00
|
|
|
lines: hostname {{ inventory_hostname_short }}
|
2016-10-28 20:50:29 +02:00
|
|
|
match: none
|
|
|
|
|
|
|
|
- name: configure top level command
|
|
|
|
eos_config:
|
|
|
|
lines: hostname foo
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
- "'hostname foo' in result.updates"
|
|
|
|
|
|
|
|
- name: configure top level command idempotent check
|
|
|
|
eos_config:
|
|
|
|
lines: hostname foo
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
|
|
|
|
- name: teardown
|
|
|
|
eos_config:
|
2017-01-09 18:21:04 +01:00
|
|
|
lines: hostname {{ inventory_hostname_short }}
|
2016-10-28 20:50:29 +02:00
|
|
|
match: none
|
|
|
|
|
|
|
|
- debug: msg="END eapi/toplevel.yaml"
|