7a24ecde86
* 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.
36 lines
730 B
YAML
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"
|