summaryrefslogtreecommitdiffstats
path: root/etc/rc.d/ypset
blob: 006e946a0f7f9d0505ade428a71fe829d8e6f367 (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
#!/bin/sh
#
# $FreeBSD$
#

# PROVIDE: ypset
# REQUIRE: ypbind
# KEYWORD: FreeBSD

. /etc/rc.subr

name="ypset"
rcvar="nis_ypset_enable"
command="/usr/sbin/${name}"
command_args="${nis_ypset_flags}"
start_precmd="ypset_precmd"

ypset_precmd()
{
	if ! checkyesno rpcbind_enable  && \
	    ! /etc/rc.d/rpcbind forcestatus 1>/dev/null 2>&1
	then
		force_depend rpcbind || return 1
	fi
	if ! checkyesno nis_client_enable && \
	    ! /etc/rc.d/ypbind forcestatus 1>/dev/null 2>&1
	then
		force_depend ypbind || return 1
	fi

	_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