Last active
December 25, 2015 20:39
-
-
Save elebertus/7036876 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# attributes/default.rb | |
default[:foo] = "bar" | |
# chef environment | |
{ | |
"override_attributes": { | |
"foo": nil | |
} | |
} | |
if node[:foo].nil? | |
stuff | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment