mirror of https://github.com/hak5/openwrt-owl.git
parent
15f3d986a3
commit
cd86893a90
|
@ -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