diff options
-rw-r--r-- | sos/plugins/apt.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sos/plugins/apt.py b/sos/plugins/apt.py index 3e83546a..84faf605 100644 --- a/sos/plugins/apt.py +++ b/sos/plugins/apt.py @@ -28,11 +28,17 @@ class Apt(Plugin, DebianPlugin, UbuntuPlugin): "/etc/apt", "/var/log/apt" ]) + shell_cmd = "sh -c '%s'" % ( + "dpkg -l | grep ^ii |" + "cut -d \" \" -f3 |" + "xargs apt-cache policy" + ) self.add_cmd_outputs([ "apt-get check", "apt-config dump", "apt-cache stats", - "apt-cache policy" + "apt-cache policy", + shell_cmd ]) # vim: et ts=4 sw=4 |