Skip to content

Instantly share code, notes, and snippets.

@nathenharvey
Created December 3, 2013 17:20
Show Gist options
  • Save nathenharvey/7773391 to your computer and use it in GitHub Desktop.
Save nathenharvey/7773391 to your computer and use it in GitHub Desktop.
{"foo" => "1.0", "bar" => "latest"}.each do |pkg,ver|
if ver == "latest"
yum_package pkg do
action :upgrade
end
else
yum_package pkg do
version ver
action :install
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment