diff options
author | Eric Desrochers <eric.desrochers@canonical.com> | 2020-07-05 14:31:23 -0400 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2020-07-08 12:44:57 -0400 |
commit | e9d71c7899607cd8107c1c0f443c945bd8328700 (patch) | |
tree | b96185038c45d0685c1b1099fecd6e4591f8b098 | |
parent | 8c2b07adeebed573306bc52a26b37b6def75a925 (diff) | |
download | sos-e9d71c7899607cd8107c1c0f443c945bd8328700.tar.gz |
[ubuntu] support status command update
Dropping 'ubuntu-support-status' as
is it confusing and not very useful
in favor of 'ubuntu-security-status'
which, for now, is only available
starting with Focal/20.04LTS.
Ubuntu bug report:
https://launchpad.net/bugs/1873362
Closes: #2139
Resolves: #2140
Signed-off-by: Eric Desrochers <eric.desrochers@canonical.com>
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
-rw-r--r-- | sos/report/plugins/ubuntu.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/report/plugins/ubuntu.py b/sos/report/plugins/ubuntu.py index 5a89f6f2..b6b88fcf 100644 --- a/sos/report/plugins/ubuntu.py +++ b/sos/report/plugins/ubuntu.py @@ -18,7 +18,7 @@ class Ubuntu(Plugin, UbuntuPlugin): def setup(self): self.add_cmd_output([ - "ubuntu-support-status --show-all", + "ubuntu-security-status --thirdparty --unavailable", "hwe-support-status --verbose", "ubuntu-advantage status" ]) |