summaryrefslogtreecommitdiff
path: root/init.d/rpcbind.in
blob: 77d6c87c07bf3a137b1a04e24993623314762227 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!@SBINDIR@/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
}