aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/odl_sfc/roles/setup-odl-sfc/tasks/control-servers-1.yml
blob: 40149346601307375cc2010405eb3d0b31f628f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---

- name: install crudini
  package:
    name: crudini
    state: latest

- name: install networking-odl
  pip:
    name: networking-odl
    virtualenv: /openstack/venvs/neutron-15.1.4    # Todo: hardcode, need to modify

- name: install networking-sfc
  pip:
    name: networking-sfc
    virtualenv: /openstack/venvs/neutron-15.1.4
  when: odl_sfc == "Enable"

- name: turn off neutron-server on control node
  service: name=neutron-server state=stopped