mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-26 06:09:41 +02:00
add an initscript
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1536 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
011032796f
commit
39c19d7943
16
openwrt/package/portmap/files/portmap.init
Normal file
16
openwrt/package/portmap/files/portmap.init
Normal file
@ -0,0 +1,16 @@
|
||||
#!/bin/sh
|
||||
|
||||
BIN=portmap
|
||||
DEFAULT=/etc/default/$BIN
|
||||
[ -f $DEFAULT ] && . $DEFAULT
|
||||
|
||||
case $1 in
|
||||
start)
|
||||
$BIN $OPTIONS
|
||||
;;
|
||||
*)
|
||||
echo "usage: $0 (start)"
|
||||
exit 1
|
||||
esac
|
||||
|
||||
exit $?
|
Loading…
Reference in New Issue
Block a user