2016-10-28 20:50:29 +02:00
|
|
|
---
|
|
|
|
- debug: msg="START eapi/toplevel_after.yaml"
|
|
|
|
|
|
|
|
- name: setup
|
|
|
|
eos_config:
|
|
|
|
lines:
|
2018-05-29 20:18:03 +02:00
|
|
|
- snmp-server contact ansible
|
2017-01-09 18:21:04 +01:00
|
|
|
- "hostname {{ inventory_hostname_short }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
match: none
|
2018-05-29 20:18:03 +02:00
|
|
|
become: yes
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- name: configure top level command with before
|
|
|
|
eos_config:
|
|
|
|
lines: hostname foo
|
|
|
|
after: snmp-server contact bar
|
2018-05-29 20:18:03 +02:00
|
|
|
become: yes
|
2016-10-28 20:50:29 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
- "'hostname foo' in result.updates"
|
|
|
|
- "'snmp-server contact bar' in result.updates"
|
|
|
|
|
|
|
|
- name: configure top level command with before idempotent check
|
|
|
|
eos_config:
|
|
|
|
lines: hostname foo
|
|
|
|
after: snmp-server contact foo
|
2018-05-29 20:18:03 +02:00
|
|
|
become: yes
|
2016-10-28 20:50:29 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
|
|
|
|
- name: teardown
|
|
|
|
eos_config:
|
|
|
|
lines:
|
|
|
|
- no snmp-server contact
|
2017-01-09 18:21:04 +01:00
|
|
|
- hostname {{ inventory_hostname_short }}
|
2016-10-28 20:50:29 +02:00
|
|
|
match: none
|
2018-05-29 20:18:03 +02:00
|
|
|
become: yes
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- debug: msg="END eapi/toplevel_after.yaml"
|