mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
78a14d7966
* Cliconf and Netconf refactoring iosxr_interface * adds `xml` key and related changes for netconf output * * review comments changes
49 lines
942 B
YAML
49 lines
942 B
YAML
---
|
|
- name: Enable Netconf service
|
|
iosxr_netconf:
|
|
netconf_port: 830
|
|
netconf_vrf: 'default'
|
|
state: present
|
|
register: result
|
|
|
|
- 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"
|
|
- "'this is my motd banner' in result.xml"
|
|
- "'that has a multiline' in result.xml"
|
|
|
|
- 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"
|
|
- "result.xml | length == 0"
|