2017-06-15 18:35:38 +02:00
|
|
|
---
|
2018-01-18 07:20:15 +01:00
|
|
|
- debug: msg="START cli/nxos_banner no-motd test"
|
|
|
|
|
2017-06-15 18:35:38 +02:00
|
|
|
- name: Setup
|
|
|
|
nxos_banner:
|
2017-09-08 16:03:41 +02:00
|
|
|
banner: motd
|
2017-06-15 18:35:38 +02:00
|
|
|
text: |
|
2017-09-08 16:03:41 +02:00
|
|
|
Junk motd banner
|
2017-06-15 18:35:38 +02:00
|
|
|
over multiple lines
|
|
|
|
state: present
|
|
|
|
|
2017-09-08 16:03:41 +02:00
|
|
|
- name: remove motd
|
|
|
|
nxos_banner: &rm-motd
|
|
|
|
banner: motd
|
2017-06-15 18:35:38 +02:00
|
|
|
state: absent
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
2017-09-08 16:03:41 +02:00
|
|
|
- "'no banner motd' in result.commands"
|
2017-06-15 18:35:38 +02:00
|
|
|
|
2017-09-08 16:03:41 +02:00
|
|
|
- name: remove motd (idempotent)
|
|
|
|
nxos_banner: *rm-motd
|
2017-06-15 18:35:38 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
- "result.commands | length == 0"
|
|
|
|
|
2018-01-18 07:20:15 +01:00
|
|
|
- debug: msg="END cli/nxos_banner no-motd test"
|