]> git.donarmstrong.com Git - dsa-puppet.git/blob - 3rdparty/modules/neutron/manifests/plugins/ml2/mech_driver.pp
f2963cf7e6a48732a23aee78db0aa0dd8b34a5ee
[dsa-puppet.git] / 3rdparty / modules / neutron / manifests / plugins / ml2 / mech_driver.pp
1 #
2 # Copyright (C) 2014 eNovance SAS <licensing@enovance.com>
3 #
4 # Author: Emilien Macchi <emilien.macchi@enovance.com>
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License"); you may
7 # not use this file except in compliance with the License. You may obtain
8 # a copy of the License at
9 #
10 #      http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15 # License for the specific language governing permissions and limitations
16 # under the License.
17 #
18 # neutron::plugins::ml2::mech_driver used by neutron::plugins::ml2
19 #
20
21 define neutron::plugins::ml2::mech_driver (
22   $supported_pci_vendor_devs,
23   $sriov_agent_required,
24 ){
25   if ($name == 'sriovnicswitch') {
26     neutron_plugin_ml2 {
27       'ml2_sriov/supported_pci_vendor_dev': value => join($supported_pci_vendor_devs, ',');
28       'ml2_sriov/agent_required':           value => $sriov_agent_required;
29     }
30   }
31 }