diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2013-04-26 18:00:43 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2013-04-26 18:00:43 +0100 |
commit | bf0e4ac40c05329caab960d001143c9a31861f8a (patch) | |
tree | 2b9e7eb42360cc21bf5377c989627b8c488dc43b | |
parent | d54af2c1734f5d7e17cc18f31515ec96de5f98c6 (diff) | |
download | sos-bf0e4ac40c05329caab960d001143c9a31861f8a.tar.gz |
Enable ppp plug-in on more distributions
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/ppp.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sos/plugins/ppp.py b/sos/plugins/ppp.py index 6f0c5caf..edb3eb43 100644 --- a/sos/plugins/ppp.py +++ b/sos/plugins/ppp.py @@ -14,15 +14,14 @@ ## 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 +from sos.plugins import Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin -class Ppp(Plugin, RedHatPlugin): +class Ppp(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): """ppp, wvdial and rp-pppoe related information """ plugin_name = 'ppp' - files = ('/etc/wvdial.conf',) packages = ('ppp',) def setup(self): |