2b2072a8c9
* removes cli functions * adds comment and confirm to arguments * implements zeroize argument * fixes get_diff function in junos shared lib to return diff * lots of minor bug fixes in junos_config * minor syntax fixes in junos_netconf * updates netconf integration tests
31 lines
614 B
YAML
31 lines
614 B
YAML
---
|
|
- debug: msg="START netconf/src_basic.yaml"
|
|
|
|
- name: setup
|
|
junos_config:
|
|
lines:
|
|
- set system host-name {{ inventory_hostname_short }}
|
|
- 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"
|