In chef I need to do easy_install -U package.
easy_install_package "distribute" do
action :install
end
How do I modify the above to use the -U option?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use the “options” parameter for the easy_install resource.
“options” is available to any kind of package resource built into Chef, and will pass the specified options to the underlying provider.