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.
44 lines
910 B
YAML
44 lines
910 B
YAML
---
|
|
- debug:
|
|
msg: "START netconf/set_hostname.yaml on connection={{ ansible_connection }}"
|
|
|
|
- block:
|
|
- name: setup
|
|
iosxr_config:
|
|
lines: hostname switch
|
|
match: none
|
|
provider: "{{ cli }}"
|
|
connection: network_cli
|
|
|
|
- name: configure hostname
|
|
iosxr_system:
|
|
hostname: foo
|
|
provider: "{{ netconf }}"
|
|
connection: netconf
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: verify hostname
|
|
iosxr_system:
|
|
hostname: foo
|
|
provider: "{{ netconf }}"
|
|
connection: netconf
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
always:
|
|
- name: teardown
|
|
iosxr_config:
|
|
lines: "hostname {{ inventory_hostname }}"
|
|
match: none
|
|
provider: "{{ cli }}"
|
|
connection: network_cli
|
|
|
|
- debug:
|
|
msg: "END netconf/set_hostname.yaml on connection={{ ansible_connection }}"
|