diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2012-12-10 14:18:03 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2012-12-10 14:18:03 +0000 |
commit | 656ceaf1e503c0d7ca9b3bc0b1291e0d52e97a45 (patch) | |
tree | 57e41bdb143acb3d3612f0b24cc1c3e6c4fe4bb3 | |
parent | 3eb86395a4485eca1b6c37d154daaf4f01e570ca (diff) | |
download | sos-656ceaf1e503c0d7ca9b3bc0b1291e0d52e97a45.tar.gz |
Fix typo in systemd module
Forgot to refresh the copy of the module in HEAD; pickup two
additional fixes added in testing.
-rw-r--r-- | sos/plugins/systemd.py | 6 |
1 files 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): - |