vote up 2 vote down star
1

I'm using the ruby daemon gem. Wondering how I can add some extra steps to the stop action? Was hoping I could detect stop was called, and add some extra code to it. Anyone know how I can accomplish this?

flag

2 Answers

vote up 3 vote down check

Looking at the daemon gem code, it doesn't look like it has an obvious extension point for this purpose. However, I wonder if (in the daemonized process) you could trap the KILL/TERM signal that daemons sends when a 'stop' occurs...?

trap("TERM") do
  # execute your extra code here
end

Alternatively you could install an at_exit hook :-

at_exit do
  # execute your extra code here
end
link|flag
at_exit worked just fine, thanks a lot. – gregf Feb 13 at 17:47
vote up 1 vote down

Rapleaf had a pretty good article on their blog about an extension to the Daemons gem that might be what you're looking for.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.