Hi, I created a custom condition FileTouched like so: 
http://gist.github.com/442896

I am using god to monitor my resque workers, and I wanted to kill off
those workers after a deploy (and let god start them again), but I ran
into some trouble because I am starting god as root (sudo service god
start) but deploying as a less privileged user. I wanted to avoid
using sudo, so I wrote this condition and added the following snippet
to my resque.god (which otherwise is more-or-less identical to the
example one in the github repo: 
http://github.com/defunkt/resque/blob/master/examples/god/resque.god)

  w.restart_if do |restart|
    restart.condition(:file_touched) do |c|
      c.path = "#{rails_root}/tmp/resque_restart.txt"
    end
  end

I haven't used god much before, and never written a custom condition
for it, so I wanted to ask whether this approach looks workable.

thanks,
Cory

-- 
You received this message because you are subscribed to the Google Groups 
"god.rb" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/god-rb?hl=en.

Reply via email to