Fix default of vswitch::provider in RedHat OS

The vswitch::provider parameter is set to 'ovs_redhat' but it results
in including the vwitch::ovs_redhat class which has never existed.
The parameter is supposed to take ovs or dpdk thus the default should
be ovs even in RedHat OS.

Change-Id: I84d023ab82c0432eeb762682d0496d6c6bbf2e82
This commit is contained in:
Takashi Kajinami 2021-06-09 14:59:17 +09:00
parent f52b53006d
commit 961eed828c
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ class vswitch::params {
$ovsdb_service_name = undef
$ovs_service_hasstatus = undef
$ovs_status = undef
$provider = 'ovs_redhat'
$provider = 'ovs'
}
'Debian': {
$ovs_package_name = 'openvswitch-switch'