From 1c6aeb99d86901cb0b6e7e07529282a70028d237 Mon Sep 17 00:00:00 2001 From: Louis Bouchard Date: Tue, 5 May 2015 14:50:54 +0200 Subject: [systemd] Enable the plugin for Debian and Ubuntu Signed-off-by: Louis Bouchard Signed-off-by: Adam Stokes --- sos/plugins/systemd.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sos/plugins/systemd.py b/sos/plugins/systemd.py index b2e50eec..a211fd28 100644 --- a/sos/plugins/systemd.py +++ b/sos/plugins/systemd.py @@ -14,10 +14,10 @@ # 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 Systemd(Plugin, RedHatPlugin): +class Systemd(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): """ System management daemon """ -- cgit