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