mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
31 lines
693 B
YAML
31 lines
693 B
YAML
|
---
|
||
|
- debug: msg="START nxapi/nxos_banner exec test"
|
||
|
|
||
|
- block:
|
||
|
- name: setup - remove exec
|
||
|
nxos_banner: &remove
|
||
|
banner: exec
|
||
|
state: absent
|
||
|
|
||
|
- name: Set exec
|
||
|
nxos_banner: &exec
|
||
|
banner: exec
|
||
|
text: |
|
||
|
this is my exec banner
|
||
|
that has a multiline
|
||
|
string
|
||
|
state: present
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == true"
|
||
|
- "'banner exec @\nthis is my exec banner\nthat has a multiline\nstring\n@' in result.commands"
|
||
|
|
||
|
- name: teardown - remove exec
|
||
|
nxos_banner: *remove
|
||
|
|
||
|
when: platform is match("N7K")
|
||
|
|
||
|
- debug: msg="END nxapi/nxos_banner exec test"
|