summaryrefslogtreecommitdiff
path: root/init.d.BSD/rpcbind
blob: faa12adfa8818d83a63fd3b8358f01d013863d51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/sbin/runscript
# Copyright 2007-2008 Roy Marples
# All rights reserved

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
}