2014-08-21 19:25:40 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2014-09-23 09:12:26 +00:00
|
|
|
PID=$(cat /run/php-fpm/php-fpm.pid 2>/dev/null)
|
|
|
|
[ "$PID" == "" ] && exit 0
|
2014-08-21 19:25:40 +00:00
|
|
|
CHILDREN=$(ps -o pid --no-headers --ppid "$PID" | wc -l)
|
|
|
|
|
2014-09-23 09:12:26 +00:00
|
|
|
if [ "$CHILDREN" == "0" ]; then
|
|
|
|
kill "$PID"
|
2014-08-21 19:25:40 +00:00
|
|
|
fi
|