aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Marchand <david.marchand@redhat.com>2019-08-23 14:14:11 +0200
committerPavel Moravec <pmoravec@redhat.com>2019-08-26 16:53:09 +0200
commit255c0b08321e9d81f69798d3df16c7548bd3c0db (patch)
tree91f9d6c8e15446516983a4f61dc4d7e23d06f705
parentaca6bd4f93b4ae5bbb1fe90dffa55297fd5fc36f (diff)
downloadsos-255c0b08321e9d81f69798d3df16c7548bd3c0db.tar.gz
[openvswitch] catch all openvswitch2.* packages
Since the release of openvswitch 2.10, the Red Hat Fast Datapath channel maintains multiple versions of openvswitch. Update the list of packages using a wildcard to catch all openvswitch2.* packages. Resolves: #1768 Signed-off-by: David Marchand <david.marchand@redhat.com> Signed-off-by: Pavel Moravec <pmoravec@redhat.com>
-rw-r--r--sos/plugins/openvswitch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/openvswitch.py b/sos/plugins/openvswitch.py
index 968efe09..6fc0a794 100644
--- a/sos/plugins/openvswitch.py
+++ b/sos/plugins/openvswitch.py
@@ -158,7 +158,7 @@ class OpenVSwitch(Plugin):
class RedHatOpenVSwitch(OpenVSwitch, RedHatPlugin):
- packages = ('openvswitch', 'openvswitch-dpdk')
+ packages = ('openvswitch', 'openvswitch2.*', 'openvswitch-dpdk')
class DebianOpenVSwitch(OpenVSwitch, DebianPlugin, UbuntuPlugin):