summaryrefslogtreecommitdiff
path: root/init.d/rpcbind.in
blob: 7c70871c6a9d65cf340f18536e62fbb7af7a0306 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!@PREFIX@/sbin/runscript
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
# Released under the 2-clause BSD license.

command=/usr/sbin/rpcbind
command_args=$rpcbind_args
name="RPC program number mapper"

depend()
{
	provide rpc
	need localmount
	use net logger dns
	before inetd xinetd ntpd ntp-client
}

stop_post()
{
	# rpcbind returns too fast, so sleep for a second
	sleep 1
}