packages/net/portmap/files/portmap.init
florian cfa6fd40d5 Start portmap with uid and gid 0 by default (#2317)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@8635 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-09-05 21:34:00 +00:00

17 lines
202 B
Bash

#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
START=40
BIN=portmap
DEFAULT=/etc/default/$BIN
start() {
[ -f $DEFAULT ] && . $DEFAULT
$BIN -u 0 -g 0 $OPTIONS
}
stop() {
killall $BIN
}