Browse Source

kill with default signal SIGTERM

ofreax 10 years ago
parent
commit
8202adbdcd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      image/service/slapd/container-start.sh

+ 1 - 1
image/service/slapd/container-start.sh

@@ -239,7 +239,7 @@ EOF
   # stop OpenLDAP
   SLAPD_PID=$(cat /run/slapd/slapd.pid)
   echo "Kill slapd, pid: $SLAPD_PID"
-  kill -INT $SLAPD_PID
+  kill $SLAPD_PID
   echo "[ok]"
 
   sleep 3