xref: /dragonfly/etc/rc.d/ypset (revision 0bb9290e)
1#!/bin/sh
2#
3# $FreeBSD: src/etc/rc.d/ypset,v 1.5 2003/07/09 03:21:03 mtm Exp $
4# $DragonFly: src/etc/rc.d/ypset,v 1.3 2005/11/19 21:47:32 swildner Exp $
5#
6
7# PROVIDE: ypset
8# REQUIRE: ypbind
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