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.
59 lines
1.3 KiB
YAML
59 lines
1.3 KiB
YAML
7 years ago
|
---
|
||
|
- name: setup - remove vlan used in test
|
||
|
vyos_config:
|
||
|
lines:
|
||
|
- delete interfaces ethernet eth0 vif 5
|
||
|
- delete interfaces ethernet eth0 vif 100
|
||
|
- delete interfaces ethernet eth1 vif 100
|
||
|
|
||
|
- name: Add multiple interfaces to vlan
|
||
|
vyos_vlan: &multiple
|
||
|
vlan_id: 100
|
||
|
interfaces:
|
||
|
- eth0
|
||
|
- eth1
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == true"
|
||
|
- "'set interfaces ethernet eth0 vif 100' in result.commands"
|
||
|
- "'set interfaces ethernet eth1 vif 100' in result.commands"
|
||
|
|
||
|
- name: Add multiple interfaces to vlan(idempotence)
|
||
|
vyos_vlan: *multiple
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == false"
|
||
|
|
||
|
- name: delete vlan with multiple interfaces
|
||
|
vyos_vlan: &delete_multiple
|
||
|
vlan_id: 100
|
||
|
interfaces:
|
||
|
- eth0
|
||
|
- eth1
|
||
|
state: absent
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == true"
|
||
|
- "'delete interfaces ethernet eth0 vif 100' in result.commands"
|
||
|
- "'delete interfaces ethernet eth1 vif 100' in result.commands"
|
||
|
|
||
|
- name: delete vlan with multiple interfaces(idempotence)
|
||
|
vyos_vlan: *delete_multiple
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == false"
|
||
|
|
||
|
- name: teardown
|
||
|
vyos_config:
|
||
|
lines:
|
||
|
- delete interfaces ethernet eth0 vif 100
|
||
|
- delete interfaces ethernet eth1 vif 100
|