diff options
author | Eric Desrochers <eric.desrochers@canonical.com> | 2018-05-24 20:39:22 -0400 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2018-06-07 11:52:51 +0100 |
commit | 7aa42642a8df816a99d6a9cc2a7099a76d294050 (patch) | |
tree | ebaf9e1a8a284141f2a1fc185bdf902c12f8eb20 | |
parent | bad9c969b8522aa9ec3e4840be302332ca69dd60 (diff) | |
download | sos-7aa42642a8df816a99d6a9cc2a7099a76d294050.tar.gz |
[lxd] Add check for the presence of lxd package
Closes: #1306
Resolves: #1313
Signed-off-by: Eric Desrochers <eric.desrochers@canonical.com>
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/lxd.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sos/plugins/lxd.py b/sos/plugins/lxd.py index 5ff1a926..d212ff92 100644 --- a/sos/plugins/lxd.py +++ b/sos/plugins/lxd.py @@ -16,6 +16,7 @@ class LXD(Plugin, UbuntuPlugin): """ plugin_name = 'lxd' profiles = ('container',) + packages = ('lxd',) def setup(self): self.add_copy_spec([ |