20f93816d6
* Return the expected prompt character based on become status * Update eos_banner tests for eapi * Update eos_config tests for eapi * Update eos_facts tests for eapi * Update eos_interface tests for eapi * Update eos_l3_interface tests for eapi * Update eos_lldp tests for eapi * Update eos_logging tests for eapi * Update eos_smoke tests for eapi * Update eos_system tests for eapi
36 lines
578 B
YAML
36 lines
578 B
YAML
---
|
|
- debug: msg="START eapi/set_hostname.yaml"
|
|
|
|
- name: setup
|
|
eos_config:
|
|
lines: hostname switch
|
|
match: none
|
|
become: yes
|
|
|
|
- name: configure hostname
|
|
eos_system:
|
|
hostname: foo
|
|
become: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: verify hostname
|
|
eos_system:
|
|
hostname: foo
|
|
become: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: teardown
|
|
eos_config:
|
|
lines: "hostname {{ inventory_hostname }}"
|
|
match: none
|
|
become: yes
|
|
|
|
- debug: msg="END eapi/set_hostname.yaml"
|