From 961eed828cdc4fb78b28a13fd6b3fbdbfdca474f Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Wed, 9 Jun 2021 14:59:17 +0900 Subject: [PATCH] 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 --- manifests/params.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/params.pp b/manifests/params.pp index 16dc8f78..fbb2e94d 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -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'