Runit sends HUP when 'reload' is called. Trap HUP and send USR2 to unicorn.

This commit is contained in:
Joshua Sierles 2014-05-23 13:01:11 +02:00
parent 4d3c19f736
commit daa8c50745
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ function on_reload()
export UNICORN_SUPERVISOR_PID=$$
trap on_exit EXIT
trap on_reload USR2
trap on_reload USR2 HUP
unicorn $@ &
UNICORN_PID=$!