cfc65b7052
currently the init.d script of fastcgi-php do not use the standard rc.common methods. The attached patch fixes that. Signed-off-by: Alexander Sulfrian <alexander@sulfrian.net> git-svn-id: svn://svn.openwrt.org/openwrt/packages@23618 3c298f89-4303-0410-b956-a3cf2f4a3e73
17 lines
194 B
Bash
17 lines
194 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2010 OpenWrt.org
|
|
|
|
START=50
|
|
|
|
export PHP_FCGI_CHILDREN=''
|
|
PORT=1026
|
|
BIN=/usr/bin/php-fcgi
|
|
|
|
start() {
|
|
$BIN -b $PORT &
|
|
}
|
|
|
|
stop() {
|
|
kill `pidof php-fcgi`
|
|
}
|