---
- debug: msg="START cli/set_hostname.yaml on connection={{ ansible_connection }}"

- name: setup
  iosxr_config:
    lines: hostname switch
    match: none
    provider: "{{ cli }}"

- name: configure hostname
  iosxr_system:
    hostname: foo
    provider: "{{ cli }}"
  register: result

- assert:
    that:
      - "result.changed == true"

- name: verify hostname
  iosxr_system:
    hostname: foo
    provider: "{{ cli }}"
  register: result

- assert:
    that:
      - "result.changed == false"

- name: teardown
  iosxr_config:
    lines: "hostname {{ inventory_hostname }}"
    match: none
    provider: "{{ cli }}"

- debug: msg="END cli/set_hostname.yaml on connection={{ ansible_connection }}"