The issue is that on RHEL/CentOS 6, the mod_passenger RPM requires the rubygems-rack RPM which is at 1.2.5. The Puppet Dashboard RPM requires explicitly rack version 1.1.0 - from vendor/rails/actionpack/lib/action_controller.rb:
gem 'rack', '~> 1.1.0' require 'rack' require 'action_controller/cgi_ext' If you comment out: #gem 'rack', '~> 1.1.0' Things work fine. So why is dashboard explicitly requiring this version? I'm not sure my 'fix' is the proper way to do things, but it at least makes things work again. On Feb 26, 2013, at 12:16 PM, Ramin K <[email protected]> wrote: > ~> 1.1.0 matches 1.1.x > > Dashboard 1.2.22 is responding to these CVEs from http://rack.github.com/ and > 1.1.6 is the one that has the fix. > > Ramin > -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/puppet-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
