mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
f2c34d51f2
* refactor nxos_system * refactor nxos_user * refactor nxos_vlan * refactor nxos_vrf
36 lines
702 B
YAML
36 lines
702 B
YAML
---
|
|
- debug: msg="START {{ connection.transport }}/set_hostname.yaml"
|
|
|
|
- name: setup
|
|
nxos_config:
|
|
lines: hostname switch
|
|
match: none
|
|
provider: "{{ connection }}"
|
|
|
|
- name: configure hostname
|
|
nxos_system:
|
|
hostname: foo
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: verify hostname
|
|
nxos_system:
|
|
hostname: foo
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: teardown
|
|
nxos_config:
|
|
lines: "hostname {{ inventory_hostname }}"
|
|
match: none
|
|
provider: "{{ connection }}"
|
|
|
|
- debug: msg="END {{ connection.transport }}/set_hostname.yaml"
|