aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/post-osa/tasks/main.yml
blob: 721114e272dfe7c24d8ae7279cc141eeb84c1047 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#############################################################################
# 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['horizon_all']

- include: tacker_horizon.yml
  when: inventory_hostname in groups['horizon_all']