6c1a5e837d
daemon's manpage and probably improved. - Consistently use "filesystem" not "file system". Approved by: bapt, brueffer Differential Revision: D452
38 lines
544 B
Bash
Executable File
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"
|