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