Modify init script to use start-stop-daemon for stopping.

This commit is contained in:
Winston Li 2015-02-21 01:24:10 +00:00
parent 30521b988b
commit 5ecc36b80e

View file

@ -75,7 +75,7 @@ do_stop()
{
if [ -f "$PIDFILE" ]; then
echo "Stopping Writelatex-Git Bridge..."
kill -9 `cat $PIDFILE`
start-stop-daemon --stop --quiet --retry=TERM/60/KILL/5 --pidfile $PIDFILE --name $NAME
# Many daemons don't delete their pidfiles when they exit.
rm -f $PIDFILE
echo "WriteLatex-Git Bridge stopped."