aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sos/plugins/ubuntu.py17
1 files changed, 5 insertions, 12 deletions
diff --git a/sos/plugins/ubuntu.py b/sos/plugins/ubuntu.py
index 4ce7ee1a..e8ef5e61 100644
--- a/sos/plugins/ubuntu.py
+++ b/sos/plugins/ubuntu.py
@@ -16,16 +16,9 @@ class Ubuntu(Plugin, UbuntuPlugin):
plugin_name = 'ubuntu'
profiles = ('system',)
- option_list = [
- ('support-show-all',
- 'Show all packages with their status', '', False),
- ]
-
def setup(self):
- cmd = ["ubuntu-support-status"]
-
- if self.get_option('support-show-all'):
- cmd.append("--show-all")
-
- self.add_cmd_output(" ".join(cmd),
- suggest_filename='ubuntu-support-status.txt')
+ self.add_cmd_output([
+ "ubuntu-support-status --show-all",
+ "hwe-support-status --verbose",
+ "ubuntu-advantage status"
+ ])