1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/test/integration/targets/nxos_system/tests/common/set_hostname.yaml
Nathaniel Case 483df13626 Fixing issues with httpapi (#40388)
* I seem to have forgotten the back half of tests

* Set http timeout from persistent_command_timeout

* Tweak URL generation and provide URL on error

* Push var_options to connection process

* Don't wait forever if coming from persistent

* Don't send the entire contents of variables to ansible-connection
2018-05-21 15:58:35 +01:00

37 lines
729 B
YAML

---
- debug: msg="START connection={{ ansible_connection }}/set_hostname.yaml"
- debug: msg="Using provider={{ connection.transport }}"
when: ansible_connection == "local"
- block:
- name: setup
nxos_config:
lines: hostname switch
match: none
- name: configure hostname
nxos_system:
hostname: foo
register: result
- assert:
that:
- "result.changed == true"
- name: verify hostname
nxos_system:
hostname: foo
register: result
- assert:
that:
- "result.changed == false"
always:
- name: teardown
nxos_config:
lines: hostname switch
match: none
- debug: msg="END connection={{ ansible_connection }}/set_hostname.yaml"