mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
a197125954
* Quick and dirty sed to add provider * Manually verify the rest of the cases * Add missing provider
29 lines
640 B
YAML
29 lines
640 B
YAML
---
|
|
- debug: msg="START nxapi/nxos_banner motd test"
|
|
|
|
- name: setup - remove motd
|
|
nxos_banner: &remove
|
|
banner: motd
|
|
provider: "{{ connection }}"
|
|
state: absent
|
|
|
|
- name: Set motd
|
|
nxos_banner: &motd
|
|
banner: motd
|
|
text: |
|
|
this is my motd banner
|
|
that has a multiline
|
|
string
|
|
provider: "{{ connection }}"
|
|
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"
|
|
|
|
- name: teardown - remove motd
|
|
nxos_banner: *remove
|
|
|
|
- debug: msg="END nxapi/nxos_banner motd test"
|