blob: c10deeb1d8027a22c3416fd942acd527ac9bf760 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!@SBINDIR@/openrc-run
# 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
}
|