freebsd-dev/etc/rc.d/ypset
Lars Engels 6c1a5e837d - Add descriptions to most of the rc scripts. Those are mostly taken from their
daemon's manpage and probably improved.
- Consistently use "filesystem" not "file system".

Approved by:	bapt, brueffer
Differential Revision:	D452
2016-04-23 16:10:54 +00:00

38 lines
544 B
Bash
Executable File

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: ypset
# REQUIRE: ypbind
# KEYWORD: shutdown
. /etc/rc.subr
name="ypset"
desc="tell ypbind(8) which YP server process to use"
rcvar="nis_ypset_enable"
load_rc_config $name
command="/usr/sbin/${name}"
command_args="${nis_ypset_flags}"
start_precmd="ypset_precmd"
ypset_precmd()
{
local _domain
force_depend rpcbind || return 1
force_depend ypbind nis_client || return 1
_domain=`domainname`
if [ -z "$_domain" ]; then
warn "NIS domainname(1) is not set."
return 1
fi
}
run_rc_command "$1"