diff options
author | Paul Wayper <paulway@redhat.com> | 2021-01-14 09:42:56 +1100 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2021-01-29 14:39:37 -0500 |
commit | 56d555056c8b3f544daf2f8c52b2d517ade9db95 (patch) | |
tree | 653f4f00b19942b5c3c2b8433929dfe8c5d238db | |
parent | 8b226bf91d808bca6295eeeab8773c1f70a410a3 (diff) | |
download | sos-56d555056c8b3f544daf2f8c52b2d517ade9db95.tar.gz |
[insights] Adding .registered file to Insights client config collection
It's useful to collect the `.registered` file as well to see if the Insights
client is actually registered (and if so, when).
Closes: #2372
Resolves: #2373
Signed-off-by: Paul Wayper <paulway@redhat.com>
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
-rw-r--r-- | sos/report/plugins/insights.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sos/report/plugins/insights.py b/sos/report/plugins/insights.py index e50bc8fb..ee26a910 100644 --- a/sos/report/plugins/insights.py +++ b/sos/report/plugins/insights.py @@ -17,6 +17,7 @@ class RedHatInsights(Plugin, RedHatPlugin): profiles = ('system', 'sysmgmt') config = ( '/etc/insights-client/insights-client.conf', + '/etc/insights-client/.registered', '/etc/redhat-access-insights/redhat-access-insights.conf' ) |