summaryrefslogtreecommitdiffstats
path: root/etc/rc.d/ypbind
blob: 0646e4cc12e2be8478d8c7062d80ba51b2d5fc47 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/sh
#
# $NetBSD: ypbind,v 1.5 2002/03/22 04:34:01 thorpej Exp $
# $FreeBSD$
#

# PROVIDE: ypbind
# REQUIRE: ypserv
# BEFORE:  DAEMON
# KEYWORD: FreeBSD NetBSD

. /etc/rc.subr

name="ypbind"
command="/usr/sbin/${name}"
start_precmd="ypbind_precmd"

case ${OSTYPE} in
FreeBSD)
	rcvar="nis_client_enable"
	command_args="${nis_client_flags}"
	;;
NetBSD)
	rcvar=$name
	;;
esac

ypbind_precmd()
{
	case ${OSTYPE} in
	FreeBSD)
		if ! checkyesno rpcbind_enable  && \
		    ! /etc/rc.d/rpcbind forcestatus 1>/dev/null 2>&1
		then
			force_depend rpcbind || return 1
		fi
		;;
	esac

	_domain=`domainname`
	if [ -z "$_domain" ]; then
		warn "domainname(1) is not set."
		return 1
	fi
}

load_rc_config $name
run_rc_command "$1"
OpenPOWER on IntegriCloud