RiotGamesCookbooks / rbenv-cookbook

Installs and configures rbenv
http://community.opscode.com/cookbooks/rbenv
Apache License 2.0
137 stars 109 forks source link

Installing libssl-dev fails #106

Closed jamesfzhang closed 10 years ago

jamesfzhang commented 10 years ago

This line is failing when installing libssl-dev. Here's the output:

package("libssl-dev") do
  action :install
  retries 0
  retry_delay 2
  guard_interpreter :default
  package_name "libssl-dev"
  version "1.0.1-4ubuntu5.14"
  cookbook_name "rbenv"
  recipe_name "default"
end

Specifically you can see that '1.0.1-4ubuntu5.14' doesn't exist here.

Is this a problem with this cookbook or with apt?

jamesfzhang commented 10 years ago

Looks like this is an issue with the the image of ubuntu-12.04 I was running on. It had an out of date version of libssl-dev. This can be solved by running sudo apt-get update.