diff options
author | Bryan Quigley <bryan.quigley@canonical.com> | 2018-05-22 14:31:45 -0400 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2018-05-24 15:33:35 +0100 |
commit | 7bc6556eaabed9a3cb0d1ab3a863e6de3a9eb742 (patch) | |
tree | 1842587576629e3af80656d4b466d77ceb0bf19d | |
parent | 891d9ef88f5607058de40b8db71633ad3146f93b (diff) | |
download | sos-7bc6556eaabed9a3cb0d1ab3a863e6de3a9eb742.tar.gz |
[maas] add package checks
Previously this had no checks and would run on every Ubuntu
machine - the majority of which are not maas servers
Resolves: #1309
Signed-off-by: Bryan Quigley <bryan.quigley@canonical.com>
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/maas.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sos/plugins/maas.py b/sos/plugins/maas.py index 65c15915..f8305406 100644 --- a/sos/plugins/maas.py +++ b/sos/plugins/maas.py @@ -17,6 +17,7 @@ class Maas(Plugin, UbuntuPlugin): plugin_name = 'maas' profiles = ('sysmgmt',) + packages = ('maas', 'maas-common') option_list = [ ('profile-name', |