packages/net/portmap/files/portmap.init
florian 0ca049a18a Reduce portmap priority, so that nfs shares specified in fstab can be mouted without timeouts
git-svn-id: svn://svn.openwrt.org/openwrt/packages@12516 3c298f89-4303-0410-b956-a3cf2f4a3e73
2008-09-03 14:14:19 +00:00

17 lines
282 B
Bash

#!/bin/sh /etc/rc.common
# Copyright (C) 2006-2008 OpenWrt.org
START=19
NAME=portmap
PROG=/usr/sbin/$NAME
DEFAULT=/etc/default/$NAME
start() {
[ -f $DEFAULT ] && . $DEFAULT
start-stop-daemon -q -S -x $PROG -- $OPTIONS
}
stop() {
start-stop-daemon -q -K -x $PROG -- $OPTIONS
}