2006-10-15 21:03:30 +00:00
|
|
|
#!/bin/sh /etc/rc.common
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
2006-10-08 09:37:32 +00:00
|
|
|
|
2006-10-15 21:03:30 +00:00
|
|
|
start() {
|
|
|
|
$BIN -b $PORT &
|
|
|
|
}
|
2006-10-08 09:37:32 +00:00
|
|
|
|
2006-10-15 21:03:30 +00:00
|
|
|
stop() {
|
|
|
|
killall php
|
|
|
|
}
|
2006-10-08 09:37:32 +00:00
|
|
|
|