aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Vallee Delisle <dvd@redhat.com>2020-02-06 10:18:08 -0500
committerBryn M. Reeves <bmr@redhat.com>2020-02-14 18:30:25 +0000
commit0829ee913be2287b819c13bb4424881c7ba6b799 (patch)
treeb4468244cc91a8b3d70f03004d1efa2095028bdf
parent73656a34ed9f041ffbd12c6b780f43c092666181 (diff)
downloadsos-0829ee913be2287b819c13bb4424881c7ba6b799.tar.gz
[openvswitch] Adding nuage-openvswitch
Nokia Nuage has forked upstream OVS but basically, the same commands should work. When a server is having nuage-ovs installed, we don't execute the ovs plugin because it doesn't detect the package. Signed-off-by: David Vallee Delisle <dvd@redhat.com> Resolves: #1933
-rw-r--r--sos/plugins/openvswitch.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/sos/plugins/openvswitch.py b/sos/plugins/openvswitch.py
index d0159466..2ae8a04d 100644
--- a/sos/plugins/openvswitch.py
+++ b/sos/plugins/openvswitch.py
@@ -163,12 +163,13 @@ class OpenVSwitch(Plugin):
class RedHatOpenVSwitch(OpenVSwitch, RedHatPlugin):
- packages = ('openvswitch', 'openvswitch2.*', 'openvswitch-dpdk')
+ packages = ('openvswitch', 'openvswitch2.*',
+ 'openvswitch-dpdk', 'nuage-openvswitch')
class DebianOpenVSwitch(OpenVSwitch, DebianPlugin, UbuntuPlugin):
- packages = ('openvswitch-switch',)
+ packages = ('openvswitch-switch', 'nuage-openvswitch')
# vim: set et ts=4 sw=4 :