Modify the OVS DPDK package name to openvswitch

For Red Hat family, the OVS with DPDK will be provided
in the same package as OVS, named as openvswitch. This
is applicable for OVS2.5 version onwards, targeted for
newton. As of now, Ubuntu is packaging DPDK separately.
After getting clarity on Ubuntu DPDK packaging, the
required changes will be done for Ubuntu also, if any.

Change-Id: I91feedd48949aac520c719ab589a1542462ff887
This commit is contained in:
Saravanan KR 2016-08-05 11:54:07 +05:30
parent 94a9e3966e
commit 56b2aaa931
2 changed files with 4 additions and 2 deletions

View File

@ -12,7 +12,9 @@ class vswitch::params {
case $::osfamily {
'Redhat': {
$ovs_package_name = 'openvswitch'
$ovs_dpdk_package_name = 'openvswitch-dpdk'
# OVS2.5 in Red Hat family is unified package which will support plain
# OVS and also DPDK (if enabled at runtime).
$ovs_dpdk_package_name = 'openvswitch'
$ovs_dkms_package_name = undef
$ovs_service_name = 'openvswitch'
$provider = 'ovs_redhat'

View File

@ -10,7 +10,7 @@ describe 'vswitch::dpdk' do
end
let :redhat_platform_params do {
:ovs_dpdk_package_name => 'openvswitch-dpdk',
:ovs_dpdk_package_name => 'openvswitch',
:ovs_service_name => 'openvswitch',
:provider => 'ovs_redhat',
}