2016-10-28 20:50:29 +02:00
|
|
|
---
|
|
|
|
- debug: msg="START netconf/src_basic.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 device with config
|
|
|
|
junos_config:
|
|
|
|
src: basic/config.j2
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
|
|
|
|
- name: check device with config
|
|
|
|
junos_config:
|
|
|
|
src: basic/config.j2
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
|
|
|
|
- debug: msg="END netconf/src_basic.yaml"
|