04f0f225dd
to allow them to do a "clean" shutdown. I purposely avoided making changes to network-related stuff since the system shutting down is pretty conclusive, and there may be complicated dependencies on the network that I would rather not try to unravel. I also skipped kerberos-related stuff for the reasons above, and because I have no way to test it.
42 lines
684 B
Bash
Executable File
42 lines
684 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: ypset
|
|
# REQUIRE: ypbind
|
|
# KEYWORD: shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="ypset"
|
|
rcvar="nis_ypset_enable"
|
|
command="/usr/sbin/${name}"
|
|
start_precmd="ypset_precmd"
|
|
load_rc_config $name
|
|
command_args="${nis_ypset_flags}"
|
|
|
|
ypset_precmd()
|
|
{
|
|
local _domain
|
|
|
|
if ! checkyesno rpcbind_enable && \
|
|
! /etc/rc.d/rpcbind forcestatus 1>/dev/null 2>&1
|
|
then
|
|
force_depend rpcbind || return 1
|
|
fi
|
|
if ! checkyesno nis_client_enable && \
|
|
! /etc/rc.d/ypbind forcestatus 1>/dev/null 2>&1
|
|
then
|
|
force_depend ypbind || return 1
|
|
fi
|
|
|
|
_domain=`domainname`
|
|
if [ -z "$_domain" ]; then
|
|
warn "NIS domainname(1) is not set."
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
run_rc_command "$1"
|