ansible/test/integration/targets/cnos_system/tests/common/set_hostname.yaml
Anil Kumar Muraleedharan 7a24ecde86 Lenovo cnos system module (#53764)
* Adding cnos_system module to Ansible.

* Adding UT, Functional test required for cnos_system. Bugs came up are fixed

* Adding more files to the cnos_system suit.
2019-03-20 08:50:45 -04:00

36 lines
730 B
YAML

---
- debug: msg="START connection={{ ansible_connection }}/set_hostname.yaml"
- debug: msg="Using provider={{ connection.transport }}"
when: ansible_connection == "local"
- block:
- name: setup
cnos_config:
lines: "hostname switch"
match: none
- name: configure hostname
cnos_system:
hostname: foo
register: result
- assert:
that:
- "result.changed == true"
- name: verify hostname
cnos_system:
hostname: foo
register: result
- assert:
that:
- "result.changed == false"
always:
- name: teardown
cnos_config:
lines: "hostname switch"
match: none
- debug: msg="END connection={{ ansible_connection }}/set_hostname.yaml"