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.
61 lines
1.1 KiB
YAML
61 lines
1.1 KiB
YAML
8 years ago
|
---
|
||
|
- debug: msg="START nxapi/configure.yaml"
|
||
|
|
||
|
- name: setup
|
||
|
nxos_config:
|
||
|
lines: no feature vn-segment-vlan-based
|
||
|
match: none
|
||
|
provider: "{{ nxapi }}"
|
||
|
|
||
|
- name: enable vn-segment-vlan-based
|
||
|
nxos_feature:
|
||
|
feature: vn-segment-vlan-based
|
||
|
state: enabled
|
||
|
provider: "{{ nxapi }}"
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == true"
|
||
|
|
||
|
- name: verify vn-segment-vlan-based
|
||
|
nxos_feature:
|
||
|
feature: vn-segment-vlan-based
|
||
|
state: enabled
|
||
|
provider: "{{ nxapi }}"
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == false"
|
||
|
|
||
|
- name: disable vn-segment-vlan-based
|
||
|
nxos_feature:
|
||
|
feature: vn-segment-vlan-based
|
||
|
state: disabled
|
||
|
provider: "{{ nxapi }}"
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == true"
|
||
|
|
||
|
- name: verify vn-segment-vlan-based
|
||
|
nxos_feature:
|
||
|
feature: vn-segment-vlan-based
|
||
|
state: disabled
|
||
|
provider: "{{ nxapi }}"
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == false"
|
||
|
|
||
|
- name: teardown
|
||
|
nxos_config:
|
||
|
lines: no feature vn-segment-vlan-based
|
||
|
match: none
|
||
|
provider: "{{ nxapi }}"
|
||
|
|
||
|
- debug: msg="END nxapi/configure.yaml"
|