diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2014-08-05 17:56:07 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2014-08-05 17:56:07 +0100 |
commit | caf23010bd74a72b3a9580981afb763c1e1c5430 (patch) | |
tree | 479bc1780d5fc20baa38d4c768cbcac3e647c9bc | |
parent | 9fed765d39a43830cb78386d1e1178ade0d2e447 (diff) | |
download | sos-caf23010bd74a72b3a9580981afb763c1e1c5430.tar.gz |
[general] Move Red Hat specifics to RedHatGeneral
Fixes: #69.
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/general.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sos/plugins/general.py b/sos/plugins/general.py index a4a73528..6082f817 100644 --- a/sos/plugins/general.py +++ b/sos/plugins/general.py @@ -26,7 +26,6 @@ class General(Plugin): "/etc/sysconfig", "/proc/stat", "/var/log/pm/suspend.log", - "/var/log/up2date", "/etc/hostid", "/var/lib/dbus/machine-id", "/etc/localtime", @@ -51,7 +50,8 @@ class RedHatGeneral(General, RedHatPlugin): self.add_copy_specs([ "/etc/redhat-release", - "/etc/fedora-release" + "/etc/fedora-release", + "/var/log/up2date" ]) def postproc(self): |