mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
483df13626
* 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
37 lines
729 B
YAML
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"
|