projects
/
openwrt.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
add layer7 patterns to iptables-mod-filter
[openwrt.git]
/
openwrt
/
package
/
php5
/
files
/
php.init
1
#!/bin/sh
2
3
export
PHP_FCGI_CHILDREN
=
''
4
PORT
=
1026
5
BIN
=/
usr
/
sbin
/
php
6
7
case
$1
in
8
start
)
9
$BIN
-b
$PORT
&
10
;;
11
stop
)
12
kill
`pidof php`
13
;;
14
*)
15
echo
"usage:
$0
(start|stop)"
16
exit
1
17
esac
18
19
exit
$?
This page took
0.042101 seconds
and
5
git commands to generate.