diff options
author | Pete Higgins <pete@peterhiggins.org> | 2020-12-18 11:03:03 -0800 |
---|---|---|
committer | Pete Higgins <pete@peterhiggins.org> | 2020-12-18 11:03:03 -0800 |
commit | 68c2d1d114907b43e3e0cf30e19e60e3d16f13c5 (patch) | |
tree | ebff6743c1c6f6c0ca7a3350460247fd1de2c6ae | |
parent | ccafde3ee0b1e82473ed92101e801cb38bc9ba0d (diff) | |
download | chef-68c2d1d114907b43e3e0cf30e19e60e3d16f13c5.tar.gz |
Update links to Compliance Phase documentation in log messages.
Signed-off-by: Pete Higgins <pete@peterhiggins.org>
-rw-r--r-- | lib/chef/compliance/fetcher/chef_server.rb | 4 | ||||
-rw-r--r-- | lib/chef/compliance/reporter/automate.rb | 3 | ||||
-rw-r--r-- | lib/chef/compliance/reporter/chef_server_automate.rb | 4 |
3 files changed, 5 insertions, 6 deletions
diff --git a/lib/chef/compliance/fetcher/chef_server.rb b/lib/chef/compliance/fetcher/chef_server.rb index db56aa82a7..96a2213b69 100644 --- a/lib/chef/compliance/fetcher/chef_server.rb +++ b/lib/chef/compliance/fetcher/chef_server.rb @@ -95,11 +95,11 @@ class Chef def handle_http_error_code(code) case code when /401|403/ - Chef::Log.error "Auth issue: see audit cookbook TROUBLESHOOTING.md" + Chef::Log.error "Auth issue: see the Compliance Phase troubleshooting documentation (http://docs.chef.io/chef_compliance_phase/#troubleshooting)." when /404/ Chef::Log.error "Object does not exist on remote server." when /413/ - Chef::Log.error "You most likely hit the erchef request size in #{ChefUtils::Dist::Server::PRODUCT} that defaults to ~2MB. To increase this limit see audit cookbook TROUBLESHOOTING.md OR https://docs.chef.io/config_rb_server.html" + Chef::Log.error "You most likely hit the erchef request size in #{ChefUtils::Dist::Server::PRODUCT} that defaults to ~2MB. To increase this limit see the Compliance Phase troubleshooting documentation (http://docs.chef.io/chef_compliance_phase/#troubleshooting) or the Chef Infra Server configuration documentation (https://docs.chef.io/server/config_rb_server/)" when /429/ Chef::Log.error "This error typically means the data sent was larger than #{ChefUtils::Dist::Automate::PRODUCT}'s limit (4 MB). Run InSpec locally to identify any controls producing large diffs." end diff --git a/lib/chef/compliance/reporter/automate.rb b/lib/chef/compliance/reporter/automate.rb index ed5c4837d0..cae0256085 100644 --- a/lib/chef/compliance/reporter/automate.rb +++ b/lib/chef/compliance/reporter/automate.rb @@ -36,8 +36,7 @@ class Chef end unless @url && @token - Chef::Log.warn "data_collector.token and data_collector.server_url must be defined in client.rb!" - Chef::Log.warn "Further information: https://github.com/chef-cookbooks/audit#direct-reporting-to-chef-automate" + Chef::Log.warn "data_collector.token and data_collector.server_url must be defined in client.rb! Further information: https://docs.chef.io/chef_compliance_phase/#direct-reporting-to-chef-automate" return false end diff --git a/lib/chef/compliance/reporter/chef_server_automate.rb b/lib/chef/compliance/reporter/chef_server_automate.rb index f0eba27816..46ca7dc7ba 100644 --- a/lib/chef/compliance/reporter/chef_server_automate.rb +++ b/lib/chef/compliance/reporter/chef_server_automate.rb @@ -76,11 +76,11 @@ class Chef def handle_http_error_code(code) case code when /401|403/ - Chef::Log.error "Auth issue: see audit cookbook TROUBLESHOOTING.md" + Chef::Log.error "Auth issue: see the Compliance Phase troubleshooting documentation (http://docs.chef.io/chef_compliance_phase/#troubleshooting)." when /404/ Chef::Log.error "Object does not exist on remote server." when /413/ - Chef::Log.error "You most likely hit the erchef request size in #{ChefUtils::Dist::Server::PRODUCT} that defaults to ~2MB. To increase this limit see audit cookbook TROUBLESHOOTING.md OR https://docs.chef.io/config_rb_server.html" + Chef::Log.error "You most likely hit the erchef request size in #{ChefUtils::Dist::Server::PRODUCT} that defaults to ~2MB. To increase this limit see the Compliance Phase troubleshooting documentation (http://docs.chef.io/chef_compliance_phase/#troubleshooting) or the Chef Infra Server configuration documentation (https://docs.chef.io/server/config_rb_server/)" when /429/ Chef::Log.error "This error typically means the data sent was larger than #{ChefUtils::Dist::Automate::PRODUCT}'s limit (4 MB). Run InSpec locally to identify any controls producing large diffs." end |