2017-06-15 16:35:38 +00:00
|
|
|
---
|
2018-01-18 06:20:15 +00:00
|
|
|
- debug: msg="START cli/nxos_banner motd test"
|
|
|
|
|
2017-06-15 16:35:38 +00:00
|
|
|
- name: setup - remove motd
|
2018-01-18 06:20:15 +00:00
|
|
|
nxos_banner: &remove
|
2017-06-15 16:35:38 +00:00
|
|
|
banner: motd
|
|
|
|
state: absent
|
2018-01-18 06:20:15 +00:00
|
|
|
provider: "{{ cli }}"
|
2017-06-15 16:35:38 +00:00
|
|
|
|
|
|
|
- name: Set motd
|
2017-08-28 21:09:54 +00:00
|
|
|
nxos_banner: &motd
|
2017-06-15 16:35:38 +00:00
|
|
|
banner: motd
|
|
|
|
text: |
|
|
|
|
this is my motd banner
|
|
|
|
that has a multiline
|
|
|
|
string
|
|
|
|
state: present
|
2018-01-18 06:20:15 +00:00
|
|
|
provider: "{{ cli }}"
|
2017-06-15 16:35:38 +00:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
- "'banner motd @\nthis is my motd banner\nthat has a multiline\nstring\n@' in result.commands"
|
|
|
|
|
|
|
|
- name: Set motd again (idempotent)
|
2017-08-28 21:09:54 +00:00
|
|
|
nxos_banner: *motd
|
2017-06-15 16:35:38 +00:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
|
2018-01-18 06:20:15 +00:00
|
|
|
- name: teardown - remove motd
|
|
|
|
nxos_banner: *remove
|
|
|
|
|
|
|
|
- debug: msg="END cli/nxos_banner motd test"
|