packages/net/portmap/files/portmap.init
florian 5c098fb5f0 Fix portmap running now as nobody (#2317)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@8693 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-09-08 18:29:51 +00:00

17 lines
192 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 $OPTIONS
}
stop() {
killall $BIN
}