dev-embedded/stlink: add
[sgilles-overlay.git] / net-nds / rpcbind / files / rpcbind.initd
blobc32b31b87dfdf46de45560bf523079493674bd85
1 #!/sbin/openrc-run
2 # Copyright 1999-2007 Gentoo Foundation
3 # Distributed under the terms of the GNU General Public License v2
4 # $Id$
6 depend() {
7         use net
8         before inetd xinetd
9         provide portmap
12 start() {
13         ebegin "Starting rpcbind"
14         start-stop-daemon --start --quiet --exec /sbin/rpcbind -- ${RPCBIND_OPTS}
15         eend $?
18 stop() {
19         ebegin "Stopping rpcbind"
20         start-stop-daemon --stop --quiet --exec /sbin/rpcbind
21         eend $?