2017-03-16 16:35:44 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: setup - remove motd
|
|
|
|
ios_banner:
|
|
|
|
banner: motd
|
|
|
|
state: absent
|
2018-02-02 15:50:15 +01:00
|
|
|
provider: "{{ cli }}"
|
2017-12-20 20:05:16 +01:00
|
|
|
|
2017-03-16 16:35:44 +01:00
|
|
|
|
|
|
|
- name: Set motd
|
|
|
|
ios_banner:
|
|
|
|
banner: motd
|
|
|
|
text: |
|
|
|
|
this is my motd banner
|
|
|
|
that has a multiline
|
|
|
|
string
|
|
|
|
state: present
|
2018-02-02 15:50:15 +01:00
|
|
|
provider: "{{ cli }}"
|
2017-12-20 20:05:16 +01:00
|
|
|
|
2017-03-16 16:35:44 +01:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- debug:
|
|
|
|
msg: "{{ result }}"
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
2017-04-05 20:00:10 +02:00
|
|
|
- "'banner motd @\nthis is my motd banner\nthat has a multiline\nstring\n@' in result.commands"
|
2017-03-16 16:35:44 +01:00
|
|
|
|
|
|
|
- name: Set motd again (idempotent)
|
|
|
|
ios_banner:
|
|
|
|
banner: motd
|
|
|
|
text: |
|
|
|
|
this is my motd banner
|
|
|
|
that has a multiline
|
|
|
|
string
|
|
|
|
state: present
|
2018-02-02 15:50:15 +01:00
|
|
|
provider: "{{ cli }}"
|
2017-12-20 20:05:16 +01:00
|
|
|
|
2017-03-16 16:35:44 +01: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"
|