From 0829ee913be2287b819c13bb4424881c7ba6b799 Mon Sep 17 00:00:00 2001 From: David Vallee Delisle Date: Thu, 6 Feb 2020 10:18:08 -0500 Subject: [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 Resolves: #1933 --- sos/plugins/openvswitch.py | 5 +++-- 1 file 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 : -- cgit