1
0
mirror of https://github.com/cmur2/dyndnsd.git synced 2024-12-21 14:54:22 +01:00

Prevent zombie processes

This commit is contained in:
cn 2013-04-28 16:06:07 +02:00
parent 00255ebed9
commit a4b6a63383

View File

@ -15,6 +15,8 @@ module Dyndnsd
pid = fork do pid = fork do
exec @command exec @command
end end
# detach so children don't become zombies
Process.detach(pid)
end end
end end
end end