mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
757 B
YAML
33 lines
757 B
YAML
7 years ago
|
---
|
||
|
- debug: msg="START nxapi/nxos_banner exec test"
|
||
|
|
||
|
- block:
|
||
|
- name: setup - remove exec
|
||
|
nxos_banner: &remove
|
||
|
banner: exec
|
||
|
state: absent
|
||
|
provider: "{{ nxapi }}"
|
||
|
|
||
|
- name: Set exec
|
||
|
nxos_banner: &exec
|
||
|
banner: exec
|
||
|
text: |
|
||
|
this is my exec banner
|
||
|
that has a multiline
|
||
|
string
|
||
|
state: present
|
||
|
provider: "{{ nxapi }}"
|
||
|
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"
|