Created
September 10, 2014 18:23
-
-
Save scarolan/247ebff761aa4b10cb6f 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
ruby_block "randomly_choose_language" do | |
block do | |
if Random.rand > 0.5 | |
node.run_state['scripting_language'] = 'php' | |
else | |
node.run_state['scripting_language'] = 'perl' | |
end | |
end | |
end | |
package "scripting_language" do | |
package_name lazy { node.run_state['scripting_language'] } | |
action :install | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment