Hi!

I'm a newbie in Puppet with some Chef experience.

Now trying to convert my pet project from Chef to Puppet.

When I start a Tomcat is takes some time (several seconds).

I need to wait a line "Server startup in" in Tomcat's log before proceeding.

Here is a way which I used in Chef:

https://github.com/abrindeyev/documentr-tomcat-cookbooks/blob/master/cookbooks/tomcat7/providers/logwatcher.rb

And include following in your recipe:

tomcat7_logwatcher "#{tc7target}/apache-tomcat-#{tc7ver}/logs/catalina.out" do
  pattern "Server startup in"
  timeout 60
  action :watch_for_line
end


What is an easy way to do the same in Puppet world?

Andrey.

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/puppet-users/-/WtW6gPXF42oJ.
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