diff options
author | Michael Kerrin <michael.kerrin@hp.com> | 2015-01-15 16:55:55 +0000 |
---|---|---|
committer | Adam Stokes <adam.stokes@ubuntu.com> | 2015-01-19 22:59:48 -0500 |
commit | 029448ae10e687e51896710065fd862c0fa66fa4 (patch) | |
tree | e0bf6e17ee3c1611dc66e348b4d8b13cea80c30b | |
parent | ce6cd3ae9dc89dd1de5122add016ce2df60b6cee (diff) | |
download | sos-029448ae10e687e51896710065fd862c0fa66fa4.tar.gz |
[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>
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | sos/plugins/networking.py | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -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): |