blob: 47cb0d35934209a620c9cdf365298f43f3725be2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#!/sbin/runscript
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
depend() {
need localmount
use net
before inetd
before xinetd
}
start() {
ebegin "Starting rpcbind"
start-stop-daemon --start --exec /usr/sbin/rpcbind
local ret=$?
eend ${ret}
# without, if a service depending on portmap is started too fast,
# connecting to portmap will fail -- azarah
# doing that for rpcbind, too -- flameeyes
sleep 1
return ${ret}
}
stop() {
ebegin "Stopping rpcbind"
start-stop-daemon --stop --exec /usr/sbin/rpcbind
eend $?
}
|