Catching system signals (UNIX)

Hello.
I have little program (daemon), most of time it waiting with sleep
method.
I need to catch system's signal SIGTERM, to terminate my program
correctly.
How can I do this?

Thanks.

···

--
Posted via http://www.ruby-forum.com/.

catch('SIGTERM'){ puts "Oh noes!" }
END{ puts "This is the end, my friend" }

^ manveru

···

On Thu, Jan 15, 2009 at 5:19 PM, Viacheslav Chumushuk <voice@root.ua> wrote:

Hello.
I have little program (daemon), most of time it waiting with sleep
method.
I need to catch system's signal SIGTERM, to terminate my program
correctly.
How can I do this?

Thanks.