freebsd-dev/etc/rc.d/yppasswdd
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

39 lines
584 B
Bash
Executable File

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: yppasswdd
# REQUIRE: ypserv ypset
# BEFORE: LOGIN
# KEYWORD: shutdown
. /etc/rc.subr
name="yppasswdd"
desc="Server for updating NIS passwords"
rcvar="nis_yppasswdd_enable"
load_rc_config $name
command="/usr/sbin/rpc.${name}"
command_args="${nis_yppasswdd_flags}"
start_precmd="yppasswdd_precmd"
yppasswdd_precmd()
{
local _domain
force_depend rpcbind || return 1
force_depend ypserv nis_server || return 1
_domain=`domainname`
if [ -z "$_domain" ]; then
warn "NIS domainname(1) is not set."
return 1
fi
}
run_rc_command "$1"