packages/net/portmap/files/portmap.init
florian 050fee0ee8 Port portmap to -ng
git-svn-id: svn://svn.openwrt.org/openwrt/packages@4481 3c298f89-4303-0410-b956-a3cf2f4a3e73
2006-08-06 11:48:04 +00:00

17 lines
172 B
Bash

#!/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 $?