xref: /dragonfly/etc/rc.d/statd (revision a4da4a90)
1#!/bin/sh
2#
3# FreeBSD History: src/etc/rc.d/nfslocking,v 1.11 2004/10/07 13:55:26 mtm Exp
4# $FreeBSD: src/etc/rc.d/statd,v 1.21 2008/07/16 19:50:29 dougb Exp $
5#
6
7# PROVIDE: statd
8# REQUIRE: nfsserver nfsclient nfsd rpcbind
9# BEFORE:  DAEMON
10# KEYWORD: nojail shutdown
11
12. /etc/rc.subr
13
14name="statd"
15rcvar=rpc_statd_enable
16command="/usr/sbin/rpc.${name}"
17start_precmd='statd_precmd'
18stop_precmd='checkyesno nfs_server_enable || checkyesno nfs_client_enable'
19status_precmd=$stop_precmd
20
21# Make sure that we are either an NFS client or server, and that we get
22# the correct flags from rc.conf(5).
23#
24statd_precmd()
25{
26	local ret
27	ret=0
28
29	if ! checkyesno nfs_server_enable && ! checkyesno nfs_client_enable
30	then
31		ret=1
32	fi
33	if ! checkyesno rpcbind_enable && \
34	    ! /etc/rc.d/rpcbind forcestatus 1>/dev/null 2>&1
35	then
36		force_depend rpcbind || ret=1
37	fi
38	rc_flags=${rpc_statd_flags}
39	return ${ret}
40}
41
42load_rc_config $name
43run_rc_command $1
44