 a1a27d1c9f
			
		
	
	a1a27d1c9f
	
	
	
		
			
			Fix bug 1620842 - Using the right conf file for OVS
Removes a condition that is no longer needed
Closes-Bug: #1620842
Change-Id: Ideed42ca554d814d261e4aa448b21f011b442c78
(cherry picked from commit 6c83f0574c)
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # Encoding: utf-8
 | |
| #
 | |
| # Cookbook Name:: openstack-network
 | |
| # Recipe:: ml2_opensvswitch
 | |
| #
 | |
| # Copyright 2013, AT&T
 | |
| #
 | |
| # Licensed under the Apache License, Version 2.0 (the "License");
 | |
| # you may not use this file except in compliance with the License.
 | |
| # You may obtain a copy of the License at
 | |
| #
 | |
| #     http://www.apache.org/licenses/LICENSE-2.0
 | |
| #
 | |
| # Unless required by applicable law or agreed to in writing, software
 | |
| # distributed under the License is distributed on an "AS IS" BASIS,
 | |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
| # See the License for the specific language governing permissions and
 | |
| # limitations under the License.
 | |
| #
 | |
| 
 | |
| require 'uri'
 | |
| 
 | |
| # Make Openstack object available in Chef::Recipe
 | |
| class ::Chef::Recipe
 | |
|   include ::Openstack
 | |
| end
 | |
| 
 | |
| include_recipe 'openstack-network::ml2_core_plugin'
 | |
| 
 | |
| node.default['openstack']['network']['plugins']['ml2']['conf']['ml2']['mechanism_drivers'] = 'openvswitch'
 | |
| 
 | |
| node.default['openstack']['network']['plugins']['openvswitch'].tap do |ovs|
 | |
|   ovs['path'] =
 | |
|     '/etc/neutron/plugins/ml2'
 | |
|   ovs['filename'] =
 | |
|     'openvswitch_agent.ini'
 | |
|   ovs['conf']['DEFAULT']['integration_bridge'] = 'br-int'
 | |
| end
 |