Skip to content

Instantly share code, notes, and snippets.

@stevendanna
Created February 18, 2012 17:31
Show Gist options
  • Save stevendanna/1860298 to your computer and use it in GitHub Desktop.
Save stevendanna/1860298 to your computer and use it in GitHub Desktop.
Bug?
chef > recipe
chef:recipe > node.default['foo'] = "bar"
=> "bar"
chef:recipe > node.set_unless['foo'] = "baz"
=> "baz"
chef:recipe > node['foo']
=> "baz"
chef:recipe > node.normal['boo'] = "bar"
=> "bar"
chef:recipe > node.set_unless['boo'] = "baz"
=> "baz"
chef:recipe > node['boo']
=> "bar"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment