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
53 lines
1 KiB
YAML
53 lines
1 KiB
YAML
---
|
|
- debug: msg="START connection={{ ansible_connection }} nxos_ospf sanity test"
|
|
- debug: msg="Using provider={{ connection.transport }}"
|
|
when: ansible_connection == "local"
|
|
|
|
- name: "Enable feature OSPF"
|
|
nxos_feature:
|
|
feature: ospf
|
|
state: enabled
|
|
ignore_errors: yes
|
|
|
|
- block:
|
|
- name: Configure ospf
|
|
nxos_ospf: &config
|
|
ospf: 1
|
|
state: present
|
|
register: result
|
|
|
|
- assert: &true
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: "Check Idempotence"
|
|
nxos_ospf: *config
|
|
register: result
|
|
|
|
- assert: &false
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
rescue:
|
|
- name: "Disable feature OSPF"
|
|
nxos_feature:
|
|
feature: ospf
|
|
state: disabled
|
|
ignore_errors: yes
|
|
|
|
always:
|
|
- name: Unconfigure ospf
|
|
nxos_ospf: &unconfig
|
|
ospf: 1
|
|
state: absent
|
|
register: result
|
|
|
|
- assert: *true
|
|
|
|
- name: "Check Idempotence"
|
|
nxos_ospf: *unconfig
|
|
register: result
|
|
|
|
- assert: *false
|
|
|
|
- debug: msg="END connection={{ ansible_connection }} nxos_ospf sanity test"
|