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