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.
ansible/test/integration/targets/nxos_banner/tests/nxapi/basic-motd.yaml

30 lines
630 B
YAML

---
- debug: msg="START nxapi/nxos_banner motd test"
- name: setup - remove motd
nxos_banner: &remove
banner: motd
state: absent
provider: "{{ nxapi }}"
- name: Set motd
nxos_banner: &motd
banner: motd
text: |
this is my motd banner
that has a multiline
string
state: present
provider: "{{ nxapi }}"
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"