summaryrefslogtreecommitdiff
path: root/lib/chef
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2018-01-22 10:57:20 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2018-01-22 10:57:20 -0800
commit34a09206c12e0bb8b658ebd8a64a76411a17afd6 (patch)
tree3e5d313e61e9c4032302ecbe1979be9a4274704f /lib/chef
parentfc84ad29bf1a365e343b5bb3d4206663269420cc (diff)
downloadchef-lcg/remove-node-set.tar.gz
Chef-14 Breaking: remove node.set and node.set_unlesslcg/remove-node-set
been deprecated since late-12. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef')
-rw-r--r--lib/chef/node.rb5
-rw-r--r--lib/chef/node/attribute.rb7
2 files changed, 1 insertions, 11 deletions
diff --git a/lib/chef/node.rb b/lib/chef/node.rb
index 20134ca11b..7b530e1132 100644
--- a/lib/chef/node.rb
+++ b/lib/chef/node.rb
@@ -199,11 +199,6 @@ class Chef
attributes.normal
end
- def set
- Chef.deprecated(:attributes, "node.set is deprecated and will be removed in Chef 14, please use node.default/node.override (or node.normal only if you really need persistence)")
- normal
- end
-
# Set a default of this node, but auto-vivify any Mashes that might
# be missing
def default
diff --git a/lib/chef/node/attribute.rb b/lib/chef/node/attribute.rb
index 389968f543..142150aeef 100644
--- a/lib/chef/node/attribute.rb
+++ b/lib/chef/node/attribute.rb
@@ -1,7 +1,7 @@
#--
# Author:: Adam Jacob (<adam@chef.io>)
# Author:: AJ Christensen (<aj@chef.io>)
-# Copyright:: Copyright 2008-2017, Chef Software Inc.
+# Copyright:: Copyright 2008-2018, Chef Software Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -446,11 +446,6 @@ class Chef
write(:override, *args) if override.read(*args[0...-1]).nil?
end
- def set_unless(*args)
- Chef.deprecated(:attributes, "node.set_unless is deprecated and will be removed in Chef 14, please use node.default_unless/node.override_unless (or node.normal_unless if you really need persistence)")
- normal_unless(*args)
- end
-
def has_key?(key)
COMPONENTS.any? do |component_ivar|
instance_variable_get(component_ivar).has_key?(key)