1#!/bin/sh
2#
3# $FreeBSD$
4#
5
6# PROVIDE: ypset
7# REQUIRE: ypbind
8# KEYWORD: shutdown
9
10. /etc/rc.subr
11
12name="ypset"
13rcvar="nis_ypset_enable"
14
15load_rc_config $name
16
17command="/usr/sbin/${name}"
18command_args="${nis_ypset_flags}"
19
20start_precmd="ypset_precmd"
21
22ypset_precmd()
23{
24	local _domain
25
26	force_depend rpcbind || return 1
27	force_depend ypbind nis_client || return 1
28
29	_domain=`domainname`
30	if [ -z "$_domain" ]; then
31		warn "NIS domainname(1) is not set."
32		return 1
33	fi
34}
35
36run_rc_command "$1"
37