ansible/test/integration/targets/junos_config/tests/netconf/src_basic.yaml
Peter Sprygada 2b2072a8c9 roll up of fixes and updates for junos modules (#22543)
* 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
2017-03-12 11:45:00 -05:00

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"