ansible/test/integration/targets/iosxr_system/tests/netconf/set_hostname.yaml
Kedar Kekan 56eeaf1b2f
Changes to enable network_cli and netconf on iosxr integration tests. (#35269)
* * 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
2018-01-24 19:46:27 +05:30

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 }}"