diff options
author | Flavio Leitner <fbl@redhat.com> | 2016-05-05 09:34:40 -0400 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2016-05-26 18:22:27 +0100 |
commit | de983230c496b3147e4b77df1153f56bd522ed75 (patch) | |
tree | 18e6ca5425cffad16c58cecc2853bb2f0a60736b | |
parent | d2cf54881a4a4e3d676dff5e2ccd182ce6591648 (diff) | |
download | sos-de983230c496b3147e4b77df1153f56bd522ed75.tar.gz |
[openvswitch] Add support for openvswitch-dpdk rpm
The openvswitch-dpdk rpm package provides the same
functionality, so enable the plugin when that package
is installed.
Signed-off-by: Flavio Leitner <fbl@redhat.com>
-rw-r--r-- | sos/plugins/openvswitch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/openvswitch.py b/sos/plugins/openvswitch.py index da043a42..356533ce 100644 --- a/sos/plugins/openvswitch.py +++ b/sos/plugins/openvswitch.py @@ -54,7 +54,7 @@ class OpenVSwitch(Plugin): class RedHatOpenVSwitch(OpenVSwitch, RedHatPlugin): - packages = ('openvswitch',) + packages = ('openvswitch', 'openvswitch-dpdk') class DebianOpenVSwitch(OpenVSwitch, DebianPlugin, UbuntuPlugin): |