Created
June 25, 2012 19:02
-
-
Save cheeseplus/2990545 to your computer and use it in GitHub Desktop.
This file contains 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
when "binary" | |
package package_name do | |
source "/tmp/riak_pkg/#{package_file}" | |
action :install | |
options = case node[:platform] | |
when "debian","ubuntu" | |
"--forceconfnew" | |
end | |
provider value_for_platform( | |
[ "ubuntu", "debian" ] => {"default" => Chef::Provider::Package::Dpkg}, | |
[ "redhat", "centos", "fedora", "suse" ] => {"default" => Chef::Provider::Package::Rpm} | |
) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment