mirror of https://github.com/ansible/ansible.git
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.
44 lines
796 B
YAML
44 lines
796 B
YAML
7 years ago
|
---
|
||
|
- name: Enable Netconf service
|
||
|
iosxr_netconf:
|
||
|
netconf_port: 830
|
||
|
netconf_vrf: 'default'
|
||
|
state: present
|
||
|
register: result
|
||
|
|
||
|
- name: Setup
|
||
|
iosxr_banner:
|
||
|
banner: login
|
||
|
text: |
|
||
|
Junk login banner
|
||
|
over multiple lines
|
||
|
provider: "{{ netconf }}"
|
||
|
state: present
|
||
|
|
||
|
- name: remove login
|
||
|
iosxr_banner:
|
||
|
banner: login
|
||
|
state: absent
|
||
|
provider: "{{ netconf }}"
|
||
|
register: result
|
||
|
|
||
|
- debug:
|
||
|
msg: "{{ result }}"
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == true"
|
||
|
- "'xc:operation=\"delete\"' in result.commands"
|
||
|
|
||
|
- name: remove login (idempotent)
|
||
|
iosxr_banner:
|
||
|
banner: login
|
||
|
state: absent
|
||
|
provider: "{{ netconf }}"
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == false"
|
||
|
- "result.commands | length == 0"
|