diff options
author | Louis Bouchard <louis.bouchard@canonical.com> | 2015-05-05 14:50:54 +0200 |
---|---|---|
committer | Adam Stokes <adam.stokes@ubuntu.com> | 2015-05-10 20:18:51 -0400 |
commit | 1c6aeb99d86901cb0b6e7e07529282a70028d237 (patch) | |
tree | 7815146f01468441406cac53580b4923b6a71b5b | |
parent | cbc968b15806de07ee9471b01e0c4e0e157f31aa (diff) | |
download | sos-1c6aeb99d86901cb0b6e7e07529282a70028d237.tar.gz |
[systemd] Enable the plugin for Debian and Ubuntu
Signed-off-by: Louis Bouchard <louis.bouchard@canonical.com>
Signed-off-by: Adam Stokes <adam.stokes@ubuntu.com>
-rw-r--r-- | sos/plugins/systemd.py | 4 |
1 files 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 """ |