Hi all, I''m installing a new puppet server and I''d like to move from mongrel to passenger. So, I''m looking for official doc abou passenger and found: http://docs.puppetlabs.com/guides/passenger.html the doc does not talk about RH6 nor 2.7.* ... Anyone has configured his server with the above doc? any other official doc with same subject? TIA, Arnau -- 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+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
If I remember right I used a combination of mostly http://projects.puppetlabs.com/projects/1/wiki/Using_Passenger and a little of http://www.uncompiled.com/centos-6-puppet-27-mcollective-foreman-rabbitto get my install working on CentOS 6. On Tue, Feb 28, 2012 at 4:58 AM, Arnau Bria <listsarnau@gmail.com> wrote:> Hi all, > > I''m installing a new puppet server and I''d like to move from mongrel to > passenger. So, I''m looking for official doc abou passenger and found: > > http://docs.puppetlabs.com/guides/passenger.html > > the doc does not talk about RH6 nor 2.7.* ... > > Anyone has configured his server with the above doc? any other > official doc with same subject? > > TIA, > Arnau > > -- > 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+unsubscribe@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/puppet-users?hl=en. > >-- Thanks, Eric Lake O: 859-232-5080 -- 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+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
On Tue, 28 Feb 2012 09:02:09 -0500 Eric Lake wrote:> If I remember right I used a combination of mostly > http://projects.puppetlabs.com/projects/1/wiki/Using_Passenger and a > little of > http://www.uncompiled.com/centos-6-puppet-27-mcollective-foreman-rabbitto > get my install working on CentOS 6.Thanks! I''ll take a look. Cheers, Arnau -- 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+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
I use puppet to bootstrap my puppet master. Here is my passenger
module (reliably tested on Fedora 14 and CentOS 6).
class httpd::passenger {
package {[ gcc, ruby-devel, rubygems ]:
ensure => latest,
provider => yum,
}
package { rack:
ensure => "1.0.1",
provider => gem,
require => Package["rubygems"],
}
package { passenger:
ensure => "2.2.11",
provider => gem,
require => [
Package["gcc"],
Package["ruby-devel"],
Package["rubygems"],
],
}
package {[ apr-devel, "gcc-c++", httpd-devel ]:
ensure => latest,
provider => yum,
}
exec { "Create mod_passenger.so":
command =>
"/usr/lib/ruby/gems/1.8/gems/passenger-2.2.11/bin/passenger-install-apache2-module
-a",
creates =>
"/usr/lib/ruby/gems/1.8/gems/passenger-2.2.11/ext/apache2/mod_passenger.so",
notify => Service["httpd"],
require => [
Package["apr-devel"],
Package["gcc-c++"],
Package["httpd-devel"],
],
}
}
--
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+unsubscribe@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/puppet-users?hl=en.