2016-10-28 20:50:29 +02:00
|
|
|
---
|
2017-12-19 21:49:49 +01:00
|
|
|
- debug: msg="START cli/toplevel_after.yaml on connection={{ ansible_connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- name: setup
|
|
|
|
eos_config:
|
|
|
|
lines:
|
|
|
|
- snmp-server contact ansible
|
2018-05-29 20:18:03 +02:00
|
|
|
- "hostname {{ inventory_hostname_short }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
match: none
|
2017-12-19 21:49:49 +01: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
|
2017-12-19 21:49:49 +01: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
|
2017-12-19 21:49:49 +01: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
|
2018-05-29 20:18:03 +02:00
|
|
|
- hostname {{ inventory_hostname_short }}
|
2016-10-28 20:50:29 +02:00
|
|
|
match: none
|
2017-12-19 21:49:49 +01:00
|
|
|
become: yes
|
2016-10-28 20:50:29 +02:00
|
|
|
|
2017-12-19 21:49:49 +01:00
|
|
|
- debug: msg="END cli/toplevel_after.yaml on connection={{ ansible_connection }}"
|