mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
add p910nd (thanks to Oliver Ertl)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1993 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
20
package/p910nd/files/p910nd.init
Normal file
20
package/p910nd/files/p910nd.init
Normal file
@@ -0,0 +1,20 @@
|
||||
#!/bin/sh
|
||||
|
||||
DEFAULT=/etc/default/p910nd
|
||||
[ -f $DEFAULT ] && . $DEFAULT
|
||||
RUN_D=/var/run
|
||||
PID_F=$RUN_D/p910${PORT-0}d.pid
|
||||
|
||||
case $1 in
|
||||
start)
|
||||
mkdir -p $RUN_D
|
||||
p910nd $OPTIONS
|
||||
;;
|
||||
stop)
|
||||
[ -f $PID_F ] && kill $(cat $PID_F)
|
||||
;;
|
||||
*)
|
||||
echo "usage: $0 (start|stop)"
|
||||
exit 1
|
||||
esac
|
||||
exit $?
|
||||
Reference in New Issue
Block a user