From 029448ae10e687e51896710065fd862c0fa66fa4 Mon Sep 17 00:00:00 2001
From: Michael Kerrin <michael.kerrin@hp.com>
Date: Thu, 15 Jan 2015 16:55:55 +0000
Subject: [PATCH 47/93] [networking] Enable the networking on debian based
systems
Fixes #463
Signed-off-by: Michael Kerrin <michael.kerrin@hp.com>
Signed-off-by: Adam Stokes <adam.stokes@ubuntu.com>
---
AUTHORS | 1 +
sos/plugins/networking.py | 4 ++--
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/AUTHORS b/AUTHORS
index 706f187..aead80d 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -26,6 +26,7 @@ Kent Lamb <klamb@redhat.com>
Louis Bouchard <louis.bouchard@canonical.com>
Lukas Zapletal <lzap@redhat.com>
Marc Sauton <msauton@redhat.com>
+Michael Kerrin <michael.kerrin@hp.com>
Michele Baldessari <michele@acksyn.org>
Navid Sheikhol-Eslami <navid@redhat.com>
Pierre Amadio <pamadio@redhat.com>
diff --git a/sos/plugins/networking.py b/sos/plugins/networking.py
index efefc45..c46a685 100644
--- a/sos/plugins/networking.py
+++ b/sos/plugins/networking.py
@@ -12,7 +12,7 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-from sos.plugins import Plugin, RedHatPlugin, UbuntuPlugin
+from sos.plugins import Plugin, RedHatPlugin, UbuntuPlugin, DebianPlugin
import os
import re
@@ -166,7 +166,7 @@ class RedHatNetworking(Networking, RedHatPlugin):
super(RedHatNetworking, self).setup()
-class UbuntuNetworking(Networking, UbuntuPlugin):
+class UbuntuNetworking(Networking, UbuntuPlugin, DebianPlugin):
trace_host = "archive.ubuntu.com"
def setup(self):
--
1.9.3