Blame SOURCES/sos-bz1745017-openvswitch-enable-by-openvswitch2.patch
|
 |
5baea9 |
From 255c0b08321e9d81f69798d3df16c7548bd3c0db Mon Sep 17 00:00:00 2001
|
|
 |
5baea9 |
From: David Marchand <david.marchand@redhat.com>
|
|
 |
5baea9 |
Date: Fri, 23 Aug 2019 14:14:11 +0200
|
|
 |
5baea9 |
Subject: [PATCH] [openvswitch] catch all openvswitch2.* packages
|
|
 |
5baea9 |
|
|
 |
5baea9 |
Since the release of openvswitch 2.10, the Red Hat Fast Datapath channel
|
|
 |
5baea9 |
maintains multiple versions of openvswitch.
|
|
 |
5baea9 |
|
|
 |
5baea9 |
Update the list of packages using a wildcard to catch all openvswitch2.*
|
|
 |
5baea9 |
packages.
|
|
 |
5baea9 |
|
|
 |
5baea9 |
Resolves: #1768
|
|
 |
5baea9 |
|
|
 |
5baea9 |
Signed-off-by: David Marchand <david.marchand@redhat.com>
|
|
 |
5baea9 |
Signed-off-by: Pavel Moravec <pmoravec@redhat.com>
|
|
 |
5baea9 |
---
|
|
 |
5baea9 |
sos/plugins/openvswitch.py | 2 +-
|
|
 |
5baea9 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
 |
5baea9 |
|
|
 |
5baea9 |
diff --git a/sos/plugins/openvswitch.py b/sos/plugins/openvswitch.py
|
|
 |
5baea9 |
index 968efe09d..6fc0a7945 100644
|
|
 |
5baea9 |
--- a/sos/plugins/openvswitch.py
|
|
 |
5baea9 |
+++ b/sos/plugins/openvswitch.py
|
|
 |
5baea9 |
@@ -158,7 +158,7 @@ def setup(self):
|
|
 |
5baea9 |
|
|
 |
5baea9 |
class RedHatOpenVSwitch(OpenVSwitch, RedHatPlugin):
|
|
 |
5baea9 |
|
|
 |
5baea9 |
- packages = ('openvswitch', 'openvswitch-dpdk')
|
|
 |
5baea9 |
+ packages = ('openvswitch', 'openvswitch2.*', 'openvswitch-dpdk')
|
|
 |
5baea9 |
|
|
 |
5baea9 |
|
|
 |
5baea9 |
class DebianOpenVSwitch(OpenVSwitch, DebianPlugin, UbuntuPlugin):
|