openwrtv4/openwrt/package/portmap/files/portmap.init
Nicolas Thill 3940ac9f6d cosmetic fix
SVN-Revision: 1545
2005-07-25 00:39:58 +00:00

16 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 $?