Skip to content

Instantly share code, notes, and snippets.

@btm
Created February 9, 2009 20:10
case node[:platform]
when "windows"
package "foo" do
case node[:kernel][:machine]
when "x86_64"
source "foo_x64.msi"
else
source "foo_x86.msi"
end
action :install
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment