blob: 5b3818bb33d22870a9d62be3efdcb1f423592af2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
---
- include_vars: "{{ ansible_os_family }}.yml"
- name: Install ODL Cluster on Controller
include: odl_controller.yml
when: inventory_hostname in groups['odl']
- name: Install ODL Cluster on Compute
include: openvswitch.yml
when: groups['odl']|length !=0 and inventory_hostname not in groups['odl']
|