mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
56eeaf1b2f
* * Changes to enable network_cli and netconf on modules. * limits connection local for single TC per playbook. * * adds a note on why only 1 TC is executed with connection: local
43 lines
910 B
YAML
43 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 }}"
|