summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2018-08-29 12:57:33 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2018-08-29 12:57:33 -0700
commitfa535d8f6f7b8a1079e5986a4827f18b3b9ab8cd (patch)
tree33bcf440cd3a6ac562edd2334962cfbe3be01cc8
parent351b5d9d59e7ce46508107d6c51fe338c0ced955 (diff)
downloadchef-fa535d8f6f7b8a1079e5986a4827f18b3b9ab8cd.tar.gz
tighten up the description here
the wall of words hurts more than it helps. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
-rw-r--r--lib/chef/node_map.rb14
1 files changed, 4 insertions, 10 deletions
diff --git a/lib/chef/node_map.rb b/lib/chef/node_map.rb
index a4891234f5..9b0a7cef22 100644
--- a/lib/chef/node_map.rb
+++ b/lib/chef/node_map.rb
@@ -38,19 +38,13 @@
class Chef
class NodeMap
COLLISION_WARNING_14 = <<~EOH.gsub(/\s+/, " ").strip
- %{type_caps} %{key} has been loaded from a cookbook. The %{type} %{key} is now
- included in Chef and will take precedence over the existing cookbook %{type} in the
- next major release of Chef (15.0, April 2019). You may be able to remove this cookbook dependency from
- your runlist if you do not use other recipes/resources/libraries from the cookbook.
- Alternatively there may be a newer version of this cookbook without the %{key} %{type}.
+ %{type_caps} %{key} from a cookbook is overriding the %{type} from core. Please upgrade your cookbook
+ or remove the cookbook from your run_list before the next major release of Chef.
EOH
COLLISION_WARNING_15 = <<~EOH.gsub(/\s+/, " ").strip
- %{type_caps} %{key} attempted to load from a cookbook. The %{type} %{key} is now
- included in Chef and takes precedence over the existing cookbook %{type}
- which will be ignored. You may be able to remove this cookbook dependency from
- your runlist if you do not use other recipes/resources/libraries from the cookbook.
- Alternatively there may be a newer version of this cookbook without the %{key} %{type}.
+ %{type_caps} %{key} from core is overriding the %{type} from a cookbook. Please upgrade your cookbook
+ or remove the cookbook from your run_list.
EOH
#