2016-10-28 20:50:29 +02:00
|
|
|
---
|
|
|
|
- debug: msg="START netconf/force.yaml"
|
|
|
|
|
|
|
|
- name: setup
|
|
|
|
junos_config:
|
|
|
|
lines:
|
2017-01-09 18:21:04 +01:00
|
|
|
- set system host-name {{ inventory_hostname_short }}
|
2016-10-28 20:50:29 +02:00
|
|
|
- delete interfaces lo0
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
|
|
|
|
- name: configure basic config template
|
|
|
|
junos_template:
|
|
|
|
src: basic/config.j2
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
action: replace
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
- "'1.1.1.1/32' in result.diff.prepared"
|
|
|
|
|
|
|
|
- name: check basic config template idempotent
|
|
|
|
junos_template:
|
2017-03-13 12:27:45 +01:00
|
|
|
src: basic/config-update.j2
|
2016-10-28 20:50:29 +02:00
|
|
|
action: replace
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
- "'1.1.1.1/32' in result.diff.prepared"
|
|
|
|
|
|
|
|
- name: teardown
|
|
|
|
junos_config:
|
|
|
|
lines:
|
2017-01-09 18:21:04 +01:00
|
|
|
- set system host-name {{ inventory_hostname_short }}
|
2016-10-28 20:50:29 +02:00
|
|
|
- delete interfaces lo0
|
|
|
|
action: replace
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
|
|
|
|
- debug: msg="END netconf/force.yaml"
|