mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.4 KiB
YAML
69 lines
1.4 KiB
YAML
---
|
|
- debug: msg="START netconf/changeport.yaml"
|
|
|
|
|
|
- name: Setup
|
|
junos_netconf:
|
|
state: present
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
|
|
###################################
|
|
- name: Change port
|
|
junos_netconf:
|
|
state: present
|
|
netconf_port: 8080
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: idempotent tests
|
|
junos_netconf:
|
|
state: present
|
|
netconf_port: 8080
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: Ensure we can communicate over 8080
|
|
junos_config:
|
|
lines:
|
|
- set system host-name {{ inventory_hostname_short }}
|
|
provider: "{{ netconf }}"
|
|
port: 8080
|
|
|
|
# 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
|
|
junos_config:
|
|
lines:
|
|
- set system host-name {{ inventory_hostname_short }}
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
ignore_errors: true
|
|
|
|
- assert:
|
|
that:
|
|
- "result.failed == true"
|
|
- "'unable to connect to' in result.msg"
|
|
|
|
- name: Set back netconf to default port
|
|
junos_netconf:
|
|
state: present
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- name: Ensure we can communicate over netconf
|
|
junos_config:
|
|
lines:
|
|
- set system host-name {{ inventory_hostname_short }}
|
|
provider: "{{ netconf }}"
|
|
|
|
- debug: msg="END netconf/changeport.yaml"
|