0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

USR1 instead of hup SERVER-368

This commit is contained in:
Eliot Horowitz 2009-10-17 20:52:23 -04:00
parent 55ada812dd
commit b8d4909800

2
debian/init.d vendored
View File

@ -156,7 +156,7 @@ reload_server() {
[ ! -f "$PIDFILE" ] && return 1
pid=pidofproc $PIDFILE # This is the daemon's pid
# Send a SIGHUP
kill -1 $pid
kill -USR1 $pid
return $?
}