ypset revision 117346
1#!/bin/sh
2#
3# $FreeBSD: head/etc/rc.d/ypset 117346 2003-07-09 03:21:03Z mtm $
4#
5
6# PROVIDE: ypset
7# REQUIRE: ypbind
8# KEYWORD: FreeBSD
9
10. /etc/rc.subr
11
12name="ypset"
13rcvar="nis_ypset_enable"
14command="/usr/sbin/${name}"
15start_precmd="ypset_precmd"
16load_rc_config $name
17command_args="${nis_ypset_flags}"
18
19ypset_precmd()
20{
21	if ! checkyesno rpcbind_enable  && \
22	    ! /etc/rc.d/rpcbind forcestatus 1>/dev/null 2>&1
23	then
24		force_depend rpcbind || return 1
25	fi
26	if ! checkyesno nis_client_enable && \
27	    ! /etc/rc.d/ypbind forcestatus 1>/dev/null 2>&1
28	then
29		force_depend ypbind || return 1
30	fi
31
32	_domain=`domainname`
33	if [ -z "$_domain" ]; then
34		warn "NIS domainname(1) is not set."
35		return 1
36	fi
37}
38
39run_rc_command "$1"
40