Skip to content

Commit

Permalink
Explicitly declared kmod-openvswitch for 3.10 kernel
Browse files Browse the repository at this point in the history
If using kernel 3.10, we should install newer kmod package.

Author: Stanislaw Bogatkin <sbogatkin@mirantis.com>
FUEL-Change-Id: I0dff6809c71f5da1e85bb0ea0515fa2d664d3516
Closes: #101
  • Loading branch information
Sergey Vasilenko committed Aug 6, 2015
1 parent 50098cf commit afa6dd1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@
$lnx_bond_tools = undef
$lnx_ethernet_tools = 'ethtool'
$lnx_bridge_tools = 'bridge-utils'
$ovs_datapath_package_name = 'kmod-openvswitch'
$ovs_datapath_package_name = $::kernelmajversion ? {
'3.10' => 'kmod-openvswitch-3.10.55-1',
default => 'kmod-openvswitch',
}
$ovs_common_package_name = 'openvswitch'
$ovs_kern_module_name = 'openvswitch'
$extra_tools = 'iputils'
Expand Down

0 comments on commit afa6dd1

Please sign in to comment.