aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/odl_cluster/tasks/03_01_clean_up_and_restart_openvswitch.yml
blob: 48287857838795917564a002f89183bfb5c3c032 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
##############################################################################
# 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: 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 ;