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.
|
|
|
---
|
|
|
|
- name: setup - remove login
|
|
|
|
iosxr_banner:
|
|
|
|
banner: login
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
state: absent
|
|
|
|
|
|
|
|
- name: Set login
|
|
|
|
iosxr_banner:
|
|
|
|
banner: login
|
|
|
|
text: |
|
|
|
|
this is my login banner
|
|
|
|
that has a multiline
|
|
|
|
string
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
state: present
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- debug:
|
|
|
|
msg: "{{ result }}"
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
- "'this is my login banner' in result.xml"
|
|
|
|
- "'that has a multiline' in result.xml"
|
|
|
|
|
|
|
|
- name: Set login again (idempotent)
|
|
|
|
iosxr_banner:
|
|
|
|
banner: login
|
|
|
|
text: |
|
|
|
|
this is my login banner
|
|
|
|
that has a multiline
|
|
|
|
string
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
state: present
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
- "result.xml | length == 0"
|