mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
6c8025ce5c
* adds integration test cases * updates eos_system with minor bug fixes
36 lines
630 B
YAML
36 lines
630 B
YAML
---
|
|
- debug: msg="START eapi/set_hostname.yaml"
|
|
|
|
- name: setup
|
|
eos_config:
|
|
lines: hostname switch
|
|
match: none
|
|
provider: "{{ eapi }}"
|
|
|
|
- name: configure hostname
|
|
eos_system:
|
|
hostname: foo
|
|
provider: "{{ eapi }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: verify hostname
|
|
eos_system:
|
|
hostname: foo
|
|
provider: "{{ eapi }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: teardown
|
|
eos_config:
|
|
lines: "hostname {{ inventory_hostname }}"
|
|
match: none
|
|
provider: "{{ eapi }}"
|
|
|
|
- debug: msg="END eapi/set_hostname.yaml"
|