Method: Chef::Node::Attribute#rm_normal
- Defined in:
- lib/chef/node/attribute.rb
#rm_normal(*args) ⇒ Object
clears attributes from normal precedence
equivalent to: normal![‘bar’].delete(‘baz’)
-
does not autovivify
-
does not trainwreck if interior keys do not exist
327 328 329 |
# File 'lib/chef/node/attribute.rb', line 327 def rm_normal(*args) normal.unlink(*args) end |