From 862f3268986fdae55acc72148d1c2a011b6c742e Mon Sep 17 00:00:00 2001 From: Adam Stokes Date: Thu, 28 Mar 2013 09:41:25 +0000 Subject: Only specify the var/log/juju dir Only the juju directory exists in /var/log/ so grab that rather than globbing for the files. --- sos/plugins/juju.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sos/plugins/juju.py b/sos/plugins/juju.py index 931eb436..4a6450ba 100644 --- a/sos/plugins/juju.py +++ b/sos/plugins/juju.py @@ -20,5 +20,5 @@ class juju(Plugin, UbuntuPlugin): """ Juju Plugin """ def setup(self): - self.addCopySpecs(["/var/log/juju*", + self.addCopySpecs(["/var/log/juju", "/var/lib/juju"]) -- cgit