blob: f7f7a6cc60ea8a9e5b37a1e87c04bf15c659a4af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#############################################################################
# Copyright (c) 2017 HUAWEI TECHNOLOGIES CO.,LTD and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
---
- include: "{{ ansible_distribution }}.yml"
when: inventory_hostname in groups['compute']
# install networking-sfc for non odl scenarios
- include: install_networking_sfc.yml
when:
- odl_sfc is not defined or odl_sfc == "Disable"
- inventory_hostname not in groups['compute']
|