summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/init.d2
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/init.d b/debian/init.d
index 95eac8f6983..b4eedf0f0e5 100644
--- a/debian/init.d
+++ b/debian/init.d
@@ -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 $?
}