php.init 338 B

123456789101112131415161718192021222324252627282930
  1. #!/bin/sh
  2. #PKG php-fastcgi
  3. #INIT 80
  4. . /etc/rc.conf
  5. export PHP_FCGI_CHILDREN=''
  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. php ${php_flags} &
  14. ;;
  15. stop)
  16. pkill 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 $?