aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/odl_cluster/tasks/01_06_stop_openstack_services.yml
blob: 30ee61fb99663f76df7511e2e2393f8ad8e6282f (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
##############################################################################
# Copyright (c) 2016 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
##############################################################################
---

- name: turn off neutron server and agent Daemon on control node
  shell: >
    sed -i '/{{ service_ovs_agent_name }}/d' /opt/service ;
    sed -i '/neutron-server/d' /opt/service;
    sed -i '/keepalived/d' /opt/service;

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

- name: turn off keepalived on control node
  service: name=keepalived state=stopped
  when: ansible_os_family == "Debian"

- name: stop neutron l3 agent
  service: name=neutron-l3-agent state=stopped enabled=no
  when: odl_l3_agent == "Enable" and inventory_hostname in groups['odl']

- name: remove neutron l3 agent
  shell: >
    sed -i '/neutron-l3-agent/d' /opt/service;
    rm -rf /lib/systemd/system/neutron-l3-agent.service;
    rm -rf /etc/init/neutron-l3-agent.conf;
    rm -rf /etc/init.d/neutron-l3-agent;
  when: odl_l3_agent == "Enable" and inventory_hostname in groups['odl']