From 219a6dab8995aad9ac4860cc1a84d6f3509a03a4 Mon Sep 17 00:00:00 2001 From: wbx Date: Sun, 17 May 2009 14:41:34 +0200 Subject: Initial import --- package/php/files/php.init | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 package/php/files/php.init (limited to 'package/php/files/php.init') diff --git a/package/php/files/php.init b/package/php/files/php.init new file mode 100644 index 000000000..c48ae227d --- /dev/null +++ b/package/php/files/php.init @@ -0,0 +1,28 @@ +#!/bin/sh +#FWINIT 80 +. /etc/rc.conf + +export PHP_FCGI_CHILDREN='' + +case $1 in +autostop) ;; +autostart) + test x"${php:-NO}" = x"NO" && exit 0 + exec sh $0 start + ;; +start) + php ${php_flags} & + ;; +stop) + killall php + ;; +restart) + sh $0 stop + sh $0 start + ;; +*) + echo "Usage: $0 {start | stop | restart}" + exit 1 + ;; +esac +exit $? -- cgit v1.2.3