diff options
author | Tim Smith <tsmith84@gmail.com> | 2022-01-07 09:55:18 -0800 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2022-01-07 10:18:40 -0800 |
commit | 3a18710cf8c85c8995f3972324503347f21f3f36 (patch) | |
tree | 82c8659a8ce1582e92c22ccbd88e533566312f90 /lib | |
parent | ddab79b54c617c42358b86b7c7a350eed268363e (diff) | |
download | chef-3a18710cf8c85c8995f3972324503347f21f3f36.tar.gz |
Bump version to 18.0 and fix master references18.0
Fix more URLs to point to main.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/chef/application/exit_code.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/chef/application/exit_code.rb b/lib/chef/application/exit_code.rb index 4cc579e83a..b912c1d8f6 100644 --- a/lib/chef/application/exit_code.rb +++ b/lib/chef/application/exit_code.rb @@ -19,8 +19,8 @@ class Chef class Application - # These are the exit codes defined in Chef RFC 062 - # https://github.com/chef/chef-rfc/blob/master/rfc062-exit-status.md + # These are the exit codes defined in the exit codes design document + # https://github.com/chef/chef/blob/main/docs/dev/design_documents/client_exit_codes.md class ExitCode require "chef-utils/dist" unless defined?(ChefUtils::Dist) @@ -140,7 +140,7 @@ class Chef def non_standard_exit_code_warning(exit_code) "#{ChefUtils::Dist::Infra::CLIENT} attempted to exit with a non-standard exit code of #{exit_code}." \ - " The #{ChefUtils::Dist::Infra::PRODUCT} Exit Codes design document (https://github.com/chef/chef-rfc/blob/master/rfc062-exit-status.md)" \ + " The #{ChefUtils::Dist::Infra::PRODUCT} Exit Codes design document (https://github.com/chef/chef/blob/main/docs/dev/design_documents/client_exit_codes.md)" \ " defines the exit codes that should be used with #{ChefUtils::Dist::Infra::CLIENT}. Chef::Application::ExitCode defines" \ " valid exit codes Non-standard exit codes are redefined as GENERIC_FAILURE." end |