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.
38 lines
924 B
YAML
38 lines
924 B
YAML
7 years ago
|
---
|
||
|
- debug: msg="START junos netconf/net_system.yaml on connection={{ ansible_connection }}"
|
||
|
|
||
|
# Add minimal testcase to check args are passed correctly to
|
||
|
# implementation module and module run is successful.
|
||
|
|
||
|
- name: setup - remove hostname
|
||
|
net_system:
|
||
|
hostname: vsrx01
|
||
|
state: absent
|
||
|
provider: "{{ netconf }}"
|
||
|
|
||
|
- name: Set hostname using platform agnostic module
|
||
|
net_system:
|
||
|
hostname: vsrx01
|
||
|
state: present
|
||
|
provider: "{{ netconf }}"
|
||
|
register: result
|
||
|
|
||
|
- name: Get running configuration
|
||
|
junos_rpc:
|
||
|
rpc: get-configuration
|
||
|
provider: "{{ netconf }}"
|
||
|
register: config
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == true"
|
||
|
- "'<host-name>vsrx01</host-name>' in config.xml"
|
||
|
|
||
|
- name: teardown - remove hostname
|
||
|
net_system:
|
||
|
hostname: vsrx01
|
||
|
state: absent
|
||
|
provider: "{{ netconf }}"
|
||
|
|
||
|
- debug: msg="END junos netconf/net_system.yaml on connection={{ ansible_connection }}"
|