mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
1c8c51d05c
* Add connection=netconf in individual roles for modules that run using netconf connection plugin * Add connection=network_cli for junos_netconf and junos_command at applicable places
49 lines
1.3 KiB
YAML
49 lines
1.3 KiB
YAML
---
|
|
- debug: msg="START netconf/multiple.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: setup
|
|
junos_config:
|
|
lines:
|
|
- "set system host-name {{ inventory_hostname_short }}"
|
|
- "delete interfaces lo0"
|
|
provider: "{{ netconf }}"
|
|
register: test
|
|
|
|
- name: configure multiple commands
|
|
junos_config:
|
|
lines:
|
|
- 'set system host-name {{ inventory_hostname_short }}'
|
|
- 'set interfaces lo0 unit 0 family inet address 1.1.1.1/32'
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
# Ensure host-name *hasn't* been updated
|
|
- "'host-name;' not in result.diff.prepared"
|
|
# Ensure interface has *been* updated
|
|
- "'address 1.1.1.1/32' in result.diff.prepared"
|
|
|
|
- name: check multiple commands idempotent
|
|
junos_config:
|
|
lines:
|
|
- 'set system host-name {{ inventory_hostname_short }}'
|
|
- 'set interfaces lo0 unit 0 family inet address 1.1.1.1/32'
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
- "result.diff is not defined"
|
|
|
|
- name: teardown
|
|
junos_config:
|
|
lines:
|
|
- "set system host-name {{ inventory_hostname_short }}"
|
|
- "delete interfaces lo0"
|
|
provider: "{{ netconf }}"
|
|
register: test
|
|
|
|
- debug: msg="END netconf/multiple.yaml on connection={{ ansible_connection }}"
|