From 8bde2ae429ae19f7827ecf360682ee50802bf611 Mon Sep 17 00:00:00 2001 From: Alexandru Juncu Date: Sun, 31 May 2015 22:50:16 +0200 Subject: [yum] add output for yum history Sometimes it is useful to see recent packet changes in the system. Yum history provides time information about actions like install, remove or update operations on system packages. Fixes #571. Signed-off-by: Alexandru Juncu Signed-off-by: Bryn M. Reeves --- sos/plugins/yum.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sos/plugins/yum.py b/sos/plugins/yum.py index 697a6b5f..19ed7f2a 100644 --- a/sos/plugins/yum.py +++ b/sos/plugins/yum.py @@ -57,6 +57,7 @@ class Yum(Plugin, RedHatPlugin): self.add_cmd_output("rhsm-debug system --sos --no-archive " "--no-subscriptions --destination %s" % self.get_cmd_output_path()) + self.add_cmd_output("yum history") if self.get_option("yumlist"): # List various information about available packages -- cgit