Skip to content

Commit

Permalink
Fix bug #64764: Add status option to fpm init.d script
Browse files Browse the repository at this point in the history
  • Loading branch information
kaplanlior authored and smalyshev committed Jun 16, 2013
1 parent 2a93fd1 commit ee01af7
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
1 change: 1 addition & 0 deletions NEWS
Expand Up @@ -18,6 +18,7 @@ PHP NEWS

- FPM:
. Fixed Bug #64915 (error_log ignored when daemonize=0). (Remi)
. Implemented FR #64764 (add support for FPM init.d script). (Lior Kaplan)

- PDO:
. Fixed bug #63176 (Segmentation fault when instantiate 2 persistent PDO to
Expand Down
16 changes: 15 additions & 1 deletion sapi/fpm/init.d.php-fpm.in
Expand Up @@ -91,6 +91,20 @@ case "$1" in
fi
;;

status)
if [ ! -r $php_fpm_PID ] ; then
echo "php-fpm is stopped"
exit 0
fi

PID=`cat $php_fpm_PID`
if ps -p $PID | grep -q $PID; then
echo "php-fpm (pid $PID) is running..."
else
echo "php-fpm dead but pid file exists"
fi
;;

force-quit)
echo -n "Terminating php-fpm "

Expand Down Expand Up @@ -131,7 +145,7 @@ case "$1" in
;;

*)
echo "Usage: $0 {start|stop|force-quit|restart|reload}"
echo "Usage: $0 {start|stop|force-quit|restart|reload|status}"
exit 1
;;

Expand Down

0 comments on commit ee01af7

Please sign in to comment.