summaryrefslogtreecommitdiffstats
path: root/openwrt/package/portmap/files/portmap.init
blob: 31a3399e93c3a023a5f8a6e5c74bd5bd3ea0fc68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 $?