From 656ceaf1e503c0d7ca9b3bc0b1291e0d52e97a45 Mon Sep 17 00:00:00 2001 From: "Bryn M. Reeves" Date: Mon, 10 Dec 2012 14:18:03 +0000 Subject: Fix typo in systemd module Forgot to refresh the copy of the module in HEAD; pickup two additional fixes added in testing. --- sos/plugins/systemd.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/sos/plugins/systemd.py b/sos/plugins/systemd.py index 8fcb3211..15088f63 100644 --- a/sos/plugins/systemd.py +++ b/sos/plugins/systemd.py @@ -17,7 +17,7 @@ from sos.plugins import Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin import os -class systemd(Plugin): +class systemd(Plugin, RedHatPlugin): """ Information on systemd and related subsystems """ @@ -38,9 +38,7 @@ class systemd(Plugin): self.collectExtOutput("journalctl --all --this-boot --no-pager -o verbose") self.addCopySpecs(["/etc/systemd", - "/lib/systemd" + "/lib/systemd", "/etc/vconsole.conf", "/etc/yum/protected.d/systemd.conf"]) -class RedHatSystemd(systemd, RedHatPlugin): - -- cgit