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