aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Stokes <adam.stokes@ubuntu.com>2013-10-18 08:01:51 -0400
committerAdam Stokes <adam.stokes@ubuntu.com>2013-10-18 08:04:50 -0400
commit88c2249b19a0d500f77136ac5f642c4fc7fd772f (patch)
tree520a441a462af4564275c6d638c2c7f4acd93a73
parent4650d3fbdf43ed0017582effbac2c95d48434657 (diff)
parent2065df46572265d7fa29e8961c6de0ac7670400d (diff)
downloadsos-88c2249b19a0d500f77136ac5f642c4fc7fd772f.tar.gz
Improve plugin by adding apt log collection and update AUTHORS
Closes: #204 Added Lukas to AUTHORS file for his contribution of katello/foreman Signed-off-by: Louis Bouchard <louis.bouchard@ubuntu.com> Signed-off-by: Adam Stokes <adam.stokes@ubuntu.com>
-rw-r--r--AUTHORS1
-rw-r--r--sos/plugins/apt.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index d18831ac..57416971 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -16,6 +16,7 @@ Justin Payne <jpayne@redhat.com>
Keith Kearnan <kearnan_keith@emc.com>
Kent Lamb <klamb@redhat.com>
Louis Bouchard <louis.bouchard@canonical.com>
+Lukas Zapletal <lzap@redhat.com>
Marc Sauton <msauton@redhat.com>
Navid Sheikhol-Eslami <navid@redhat.com>
Pierre Amadio <pamadio@redhat.com>
diff --git a/sos/plugins/apt.py b/sos/plugins/apt.py
index f4068305..ad2fe1a3 100644
--- a/sos/plugins/apt.py
+++ b/sos/plugins/apt.py
@@ -23,7 +23,7 @@ class Apt(Plugin, DebianPlugin, UbuntuPlugin):
plugin_name = 'apt'
def setup(self):
- self.add_copy_specs(["/etc/apt"])
+ self.add_copy_specs(["/etc/apt", "/var/log/apt"])
self.add_cmd_output("apt-get check")
self.add_cmd_output("apt-config dump")