Hello,

> The backtrace shows you're using passenger 2.2.1, try removing that
> gem and reinstalling 2.2.2.

Thanks for pointing that out, John ! The sort of obvious thing I tend to
zap when obnubilating over a problem...

So I finally sorted this out. After reinstalling passenger 2.2.2, I got
the same error as with 2.2.4: http://pastie.org/547061

And as I initially suspected, it indeed was a path related problem.

When putting this in my config.ru:
  $:.push('/srv/puppet/lib')

I obtain thee following RUBYLIB search path:
  ["/usr/lib/ruby/gems/1.8/gems/passenger-2.2.2/vendor/rack-1.0.0-git/lib", 
"/usr/lib/ruby/gems/1.8/gems/passenger-2.2.2/lib", 
"/usr/lib/ruby/gems/1.8/gems/passenger-2.2.2/ext", 
"/usr/lib/ruby/gems/1.8/gems/fastthread-1.0.7/bin", 
"/usr/lib/ruby/gems/1.8/gems/fastthread-1.0.7/lib", 
"/usr/lib/ruby/gems/1.8/gems/fastthread-1.0.7/ext", 
"/usr/lib/ruby/site_ruby/1.8", "/usr/lib64/ruby/site_ruby/1.8", 
"/usr/lib64/ruby/site_ruby/1.8/x86_64-linux", "/usr/lib/ruby/site_ruby", 
"/usr/lib64/ruby/site_ruby", "/usr/lib64/site_ruby/1.8", 
"/usr/lib64/site_ruby/1.8/x86_64-linux", "/usr/lib64/site_ruby", 
"/usr/lib/ruby/1.8", "/usr/lib64/ruby/1.8", "/usr/lib64/ruby/1.8/x86_64-linux", 
".", "/srv/puppet/lib"]

And I had an RPM based puppet-0.24.8 installed in
/usr/lib/ruby/site_ruby/1.8/puppet which got used instead of 0.25.0beta2 in
/srv/puppet/lib...

The workaround I used was to put this in my config.ru instead:

  $:.insert(0, '/srv/puppet/lib')

which sets RUBYLIB as so:
  ["/srv/puppet/lib", "/usr/lib/ruby/gems/1.8/gems/passenger-2.2.2/blabla...

I now have a few ssl-cert & permission related problems which are probably
easy to figure out.

Conclusion:
 - passenger 2.2.2 seems to currently be the only option
 - watch out when different puppet versions live on the same host

Thanks for you help folks !
Marc




--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to