2017-06-15 18:35:38 +02:00
|
|
|
---
|
|
|
|
- name: setup - remove motd
|
|
|
|
nxos_banner:
|
|
|
|
banner: motd
|
|
|
|
state: absent
|
2017-08-17 10:40:54 +02:00
|
|
|
provider: "{{ connection }}"
|
2017-06-15 18:35:38 +02:00
|
|
|
|
|
|
|
- name: Set motd
|
2017-08-28 23:09:54 +02:00
|
|
|
nxos_banner: &motd
|
2017-06-15 18:35:38 +02:00
|
|
|
banner: motd
|
|
|
|
text: |
|
|
|
|
this is my motd banner
|
|
|
|
that has a multiline
|
|
|
|
string
|
|
|
|
state: present
|
2017-08-17 10:40:54 +02:00
|
|
|
provider: "{{ connection }}"
|
2017-06-15 18:35:38 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
- "'banner motd @\nthis is my motd banner\nthat has a multiline\nstring\n@' in result.commands"
|
|
|
|
|
|
|
|
- name: Set motd again (idempotent)
|
2017-08-28 23:09:54 +02:00
|
|
|
nxos_banner: *motd
|
2017-06-15 18:35:38 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
- "result.commands | length == 0"
|
|
|
|
|
|
|
|
# FIXME add in tests for everything defined in docs
|
|
|
|
# FIXME Test state:absent + test:
|
|
|
|
# FIXME Without powers ensure "privileged mode required"
|