mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.1 KiB
YAML
56 lines
1.1 KiB
YAML
7 years ago
|
---
|
||
|
- debug: msg="START TRANSPORT:{{ connection.transport }} nxos_ospf sanity test"
|
||
|
|
||
|
- name: "Enable feature OSPF"
|
||
|
nxos_feature:
|
||
|
feature: ospf
|
||
|
state: enabled
|
||
|
provider: "{{ connection }}"
|
||
|
ignore_errors: yes
|
||
|
|
||
|
- block:
|
||
|
- name: Configure ospf
|
||
|
nxos_ospf: &config
|
||
|
ospf: 1
|
||
|
state: present
|
||
|
provider: "{{ connection }}"
|
||
|
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
|
||
|
provider: "{{ connection }}"
|
||
|
ignore_errors: yes
|
||
|
|
||
|
always:
|
||
|
- name: Unconfigure ospf
|
||
|
nxos_ospf: &unconfig
|
||
|
ospf: 1
|
||
|
state: absent
|
||
|
provider: "{{ connection }}"
|
||
|
register: result
|
||
|
|
||
|
- assert: *true
|
||
|
|
||
|
- name: "Check Idempotence"
|
||
|
nxos_ospf: *unconfig
|
||
|
register: result
|
||
|
|
||
|
- assert: *false
|
||
|
|
||
|
- debug: msg="END TRANSPORT:{{ connection.transport }} nxos_ospf sanity test"
|