freebsd-dev/etc/rc.d/ypbind
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
504 B
Bash
Executable File

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: ypbind
# REQUIRE: ypserv
# BEFORE: DAEMON
# KEYWORD: shutdown
. /etc/rc.subr
name="ypbind"
desc="NIS domain binding daemon"
rcvar="nis_client_enable"
load_rc_config $name
command="/usr/sbin/${name}"
command_args="${nis_client_flags}"
start_precmd="ypbind_precmd"
ypbind_precmd()
{
local _domain
force_depend rpcbind || return 1
_domain=`domainname`
if [ -z "$_domain" ]; then
warn "NIS domainname(1) is not set."
return 1
fi
}
run_rc_command "$1"