diff options
author | Jake Hunsaker <jhunsake@redhat.com> | 2018-03-01 11:02:39 -0500 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2018-05-09 15:37:22 +0100 |
commit | 5f9257551c02b0912a5a250c7a3a28de05bd863f (patch) | |
tree | c859635edde20b4f29168c126ff934d27dd21ec3 | |
parent | c33fe2e12f8fc57acbbef1867a05e0da072c9e4a (diff) | |
download | sos-5f9257551c02b0912a5a250c7a3a28de05bd863f.tar.gz |
[yum] Capture installed list
Adds collection of 'yum list installed' to the yum plugin.
Resolves: #1236
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/yum.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sos/plugins/yum.py b/sos/plugins/yum.py index b6df7c80..ae0d4b50 100644 --- a/sos/plugins/yum.py +++ b/sos/plugins/yum.py @@ -78,6 +78,7 @@ class Yum(Plugin, RedHatPlugin): self.add_cmd_output([ "yum history", + "yum list installed", "package-cleanup --dupes", "package-cleanup --problems" ]) |