|
|
|
@ -38,9 +38,14 @@
|
|
|
|
|
that:
|
|
|
|
|
- "result.changed == true"
|
|
|
|
|
|
|
|
|
|
- name: wait for persistent socket to timeout
|
|
|
|
|
pause:
|
|
|
|
|
seconds: 120
|
|
|
|
|
- name: wait for netconf port tcp/830 to be open
|
|
|
|
|
wait_for:
|
|
|
|
|
host: "{{ hostvars[item].ansible_host }}"
|
|
|
|
|
port: 830
|
|
|
|
|
with_inventory_hostnames: junos
|
|
|
|
|
|
|
|
|
|
- name: Reset ansible connections
|
|
|
|
|
meta: reset_connection
|
|
|
|
|
|
|
|
|
|
- name: Ensure we can communicate over netconf
|
|
|
|
|
include: "{{ role_path }}/tests/utils/junos_command.yaml ansible_connection=netconf ansible_port=830 is_ignore_errors=false"
|
|
|
|
@ -91,9 +96,15 @@
|
|
|
|
|
that:
|
|
|
|
|
- "result.changed == true"
|
|
|
|
|
|
|
|
|
|
- name: wait for netconf server to come up
|
|
|
|
|
pause:
|
|
|
|
|
seconds: 10
|
|
|
|
|
- name: wait for netconf port tcp/830 to be closed
|
|
|
|
|
wait_for:
|
|
|
|
|
host: "{{ hostvars[item].ansible_host }}"
|
|
|
|
|
port: 830
|
|
|
|
|
state: stopped
|
|
|
|
|
with_inventory_hostnames: junos
|
|
|
|
|
|
|
|
|
|
- name: Reset ansible connections
|
|
|
|
|
meta: reset_connection
|
|
|
|
|
|
|
|
|
|
- name: Ensure we can NOT talk via netconf
|
|
|
|
|
include: "{{ role_path }}/tests/utils/junos_command.yaml ansible_connection=netconf ansible_port=830 is_ignore_errors=true"
|
|
|
|
|