Created
March 3, 2010 21:34
-
-
Save adamhjk/321060 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
# role | |
name 'base-packages' | |
default_attributes :packages => { | |
'build-essential' => "latest", | |
'gcc' => "3.0" | |
} | |
run_list "recipe[install-packages]" | |
# cookbooks/install-packages/recipe/default.rb | |
node.packages.each do |name, version_number| | |
package name do | |
version vesion_number if version_number != "latest" | |
action :install | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment