Skip to content

Commit

Permalink
Merge pull request #157 from psimonyi/signals
Browse files Browse the repository at this point in the history
Kill the servers with SIGTERM to let them clean up
  • Loading branch information
cdelahousse committed Apr 17, 2013
2 parents c380807 + 1a6c8a4 commit 91cb41b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/stop_dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ DB_PID="var/db.pid"
######################################################################
# Stop server and db

kill -SIGKILL $(< $SERVER_PID)
kill -SIGKILL $(< $DB_PID)
kill -SIGTERM $(< $SERVER_PID)
kill -SIGTERM $(< $DB_PID)

0 comments on commit 91cb41b

Please sign in to comment.