blob: 37dc1bd12073d4dbd21572f6066105bcc13e99d3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
---
- 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']
|