diff options
author | Adam Stokes <adam-stokes@ubuntu.com> | 2013-03-28 09:41:25 +0000 |
---|---|---|
committer | Adam Stokes <adam-stokes@ubuntu.com> | 2013-03-28 09:41:25 +0000 |
commit | 862f3268986fdae55acc72148d1c2a011b6c742e (patch) | |
tree | 9dcd1e403dfac853f0d8369f655600df12c50af0 | |
parent | 2fcb1f4a6fbf5abda746bf1470edb55ccc6b01a6 (diff) | |
download | sos-862f3268986fdae55acc72148d1c2a011b6c742e.tar.gz |
Only specify the var/log/juju dir
Only the juju directory exists in /var/log/ so grab that rather than globbing for the files.
-rw-r--r-- | sos/plugins/juju.py | 2 |
1 files changed, 1 insertions, 1 deletions
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"]) |