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
25 lines
499 B
YAML
25 lines
499 B
YAML
---
|
|
- debug: msg="START nxapi/nxos_banner no-motd test"
|
|
|
|
- name: Setup
|
|
nxos_banner:
|
|
banner: motd
|
|
text: |
|
|
Junk motd banner
|
|
over multiple lines
|
|
provider: "{{ connection }}"
|
|
state: present
|
|
|
|
- name: remove motd
|
|
nxos_banner: &rm-motd
|
|
banner: motd
|
|
provider: "{{ connection }}"
|
|
state: absent
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'no banner motd' in result.commands"
|
|
|
|
- debug: msg="END nxapi/nxos_banner no-motd test"
|