I''m getting the following error on the client: /usr/lib64/site_ruby/1.8/puppet/util.rb:300: warning: fork terminates thread at /usr/lib64/site_ruby/1.8/puppet/external/event-loop/event-loop.rb :123 when using the following code: case $operatingsystem { CentOS: { service { "nrpe": ensure => true, enable => true, require => file["/etc/init.d/nrpe"]; } } } I''m new so I''m wondering if I''m setting up the service incorrectly or if there might be a bug with ??? cjs _______________________________________________ Puppet-users mailing list Puppet-users@madstop.com https://mail.madstop.com/mailman/listinfo/puppet-users
On May 31, 2007, at 9:08 AM, Clif Smith wrote:> I''m getting the following error on the client: > /usr/lib64/site_ruby/1.8/puppet/util.rb:300: warning: fork > terminates thread at /usr/lib64/site_ruby/1.8/puppet/external/event- > loop/event-loop.rb:123 > > when using the following code: > case $operatingsystem { > CentOS: { > service { "nrpe": > ensure => true, > enable => true, > require => file["/etc/init.d/nrpe"]; > } > } > } > > I''m new so I''m wondering if I''m setting up the service incorrectly > or if there might be a bug with ???That''s a ruby warning, but it doesn''t affect function. I don''t think there''s a way to avoid it -- Puppet runs multiple threads, and we have to fork to execute things. I''ll see about getting rid of the warning, though. -- If you would be a real seeker after truth, it is necessary that at least once in your life you doubt, as far as possible, all things. -- Rene Descartes --------------------------------------------------------------------- Luke Kanies | http://reductivelabs.com | http://madstop.com
Gracias! On 5/31/07, Luke Kanies <luke@madstop.com> wrote:> > On May 31, 2007, at 9:08 AM, Clif Smith wrote: > > > I''m getting the following error on the client: > > /usr/lib64/site_ruby/1.8/puppet/util.rb:300: warning: fork > > terminates thread at /usr/lib64/site_ruby/1.8/puppet/external/event- > > loop/event-loop.rb:123 > > > > when using the following code: > > case $operatingsystem { > > CentOS: { > > service { "nrpe": > > ensure => true, > > enable => true, > > require => file["/etc/init.d/nrpe"]; > > } > > } > > } > > > > I''m new so I''m wondering if I''m setting up the service incorrectly > > or if there might be a bug with ??? > > That''s a ruby warning, but it doesn''t affect function. I don''t think > there''s a way to avoid it -- Puppet runs multiple threads, and we > have to fork to execute things. > > I''ll see about getting rid of the warning, though. > > -- > If you would be a real seeker after truth, it is necessary that at > least once in your life you doubt, as far as possible, all things. > -- Rene Descartes > --------------------------------------------------------------------- > Luke Kanies | http://reductivelabs.com | http://madstop.com > > > _______________________________________________ > Puppet-users mailing list > Puppet-users@madstop.com > https://mail.madstop.com/mailman/listinfo/puppet-users >_______________________________________________ Puppet-users mailing list Puppet-users@madstop.com https://mail.madstop.com/mailman/listinfo/puppet-users