php.init 367 B

1234567891011121314151617181920212223242526272829
  1. #!/bin/sh
  2. #PKG php-fastcgi
  3. #INIT 80
  4. . /etc/rc.conf
  5. export PHP_FCGI_CHILDREN='2'
  6. case $1 in
  7. autostop) ;;
  8. autostart)
  9. test x"${php:-NO}" = x"NO" && exit 0
  10. exec sh $0 start
  11. ;;
  12. start)
  13. /usr/bin/php ${php_flags} &
  14. ;;
  15. stop)
  16. kill $(pgrep -f /usr/bin/php)
  17. ;;
  18. restart)
  19. sh $0 stop
  20. sh $0 start
  21. ;;
  22. *)
  23. echo "Usage: $0 {start | stop | restart}"
  24. exit 1
  25. ;;
  26. esac
  27. exit $?