aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--AUTHORS1
-rw-r--r--sos/plugins/networking.py4
2 files changed, 3 insertions, 2 deletions
diff --git a/AUTHORS b/AUTHORS
index 706f187a..aead80d4 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 efefc457..c46a685c 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):