2017-12-06 18:07:31 +01:00
|
|
|
---
|
|
|
|
- name: setup - remove motd
|
|
|
|
iosxr_banner:
|
|
|
|
banner: motd
|
|
|
|
state: absent
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
|
|
|
|
- name: Set motd
|
|
|
|
iosxr_banner:
|
|
|
|
banner: motd
|
|
|
|
text: |
|
|
|
|
this is my motd banner
|
|
|
|
that has a multiline
|
|
|
|
string
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
state: present
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- debug:
|
|
|
|
msg: "{{ result }}"
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
2017-12-20 08:36:07 +01:00
|
|
|
- "'this is my motd banner' in result.xml"
|
|
|
|
- "'that has a multiline' in result.xml"
|
2017-12-06 18:07:31 +01:00
|
|
|
|
|
|
|
- name: Set motd again (idempotent)
|
|
|
|
iosxr_banner:
|
|
|
|
banner: motd
|
|
|
|
text: |
|
|
|
|
this is my motd banner
|
|
|
|
that has a multiline
|
|
|
|
string
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
state: present
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
2017-12-20 08:36:07 +01:00
|
|
|
- "result.xml | length == 0"
|