blob: 684f314cc7b1b7b0925bb9a00c6d90e0e34d3706 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
---
- name: install crudini
package:
name: crudini
state: latest
- name: install networking-odl
pip:
name: networking-odl
virtualenv: /openstack/venvs/neutron-15.1.4
- name: configure vsctl for dhcp agent
shell: |
crudini --set /etc/neutron/dhcp_agent.ini OVS \
ovsdb_interface vsctl;
when:
- inventory_hostname not in groups['nova_compute']
- name: configure vsctl for l3 agent
shell: |
crudini --set /etc/neutron/l3_agent.ini OVS \
ovsdb_interface vsctl;
when: odl_l3_agent == "Disable" and inventory_hostname not in groups['nova_compute']
- name: stop neutron l3 agent
service: name=neutron-l3-agent state=stopped enabled=no
when: odl_l3_agent == "Enable" and inventory_hostname not in groups['nova_compute']
- name: shut down and disable Neutron's openvswitch agent services
service: name={{ service_ovs_agent_name }} state=stopped enabled=no
- name: Stop the Open vSwitch service and clear existing OVSDB
shell: >
service {{ service_ovs_name }} stop ;
rm -rf /var/log/openvswitch/* ;
rm -rf /etc/openvswitch/conf.db ;
service {{ service_ovs_name }} start ;
|