mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
change netconf test port from 8080 to 22 (#27761)
This commit is contained in:
parent
0f741b00b4
commit
3c09f69765
1 changed files with 4 additions and 4 deletions
|
@ -13,7 +13,7 @@
|
||||||
- name: Change port
|
- name: Change port
|
||||||
junos_netconf:
|
junos_netconf:
|
||||||
state: present
|
state: present
|
||||||
netconf_port: 8080
|
netconf_port: 22
|
||||||
provider: "{{ cli }}"
|
provider: "{{ cli }}"
|
||||||
register: result
|
register: result
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
- name: idempotent tests
|
- name: idempotent tests
|
||||||
junos_netconf:
|
junos_netconf:
|
||||||
state: present
|
state: present
|
||||||
netconf_port: 8080
|
netconf_port: 22
|
||||||
provider: "{{ cli }}"
|
provider: "{{ cli }}"
|
||||||
register: result
|
register: result
|
||||||
|
|
||||||
|
@ -32,11 +32,11 @@
|
||||||
that:
|
that:
|
||||||
- "result.changed == false"
|
- "result.changed == false"
|
||||||
|
|
||||||
- name: Ensure we can communicate over 8080
|
- name: Ensure we can communicate over 22
|
||||||
junos_command:
|
junos_command:
|
||||||
rpcs: get-software-information
|
rpcs: get-software-information
|
||||||
provider: "{{ netconf }}"
|
provider: "{{ netconf }}"
|
||||||
port: 8080
|
port: 22
|
||||||
|
|
||||||
# This protects against the port override above not being honoured and a bug setting the port
|
# This protects against the port override above not being honoured and a bug setting the port
|
||||||
- name: Ensure we can NOT communicate over default port
|
- name: Ensure we can NOT communicate over default port
|
||||||
|
|
Loading…
Reference in a new issue