2001-06-16 07:16:14 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2002-06-13 22:14:37 +00:00
|
|
|
# $FreeBSD$
|
2001-06-16 07:16:14 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: yppasswdd
|
2009-06-01 04:55:13 +00:00
|
|
|
# REQUIRE: ypserv ypset
|
2002-06-13 22:14:37 +00:00
|
|
|
# BEFORE: LOGIN
|
2008-07-16 19:50:29 +00:00
|
|
|
# KEYWORD: shutdown
|
2001-06-16 07:16:14 +00:00
|
|
|
|
|
|
|
. /etc/rc.subr
|
|
|
|
|
|
|
|
name="yppasswdd"
|
2012-02-14 10:51:24 +00:00
|
|
|
rcvar="nis_yppasswdd_enable"
|
2001-06-16 07:16:14 +00:00
|
|
|
|
2003-01-24 00:37:52 +00:00
|
|
|
load_rc_config $name
|
2012-02-14 10:51:24 +00:00
|
|
|
|
|
|
|
command="/usr/sbin/rpc.${name}"
|
2004-01-17 10:59:43 +00:00
|
|
|
command_args="${nis_yppasswdd_flags}"
|
2002-06-13 22:14:37 +00:00
|
|
|
|
2012-02-14 10:51:24 +00:00
|
|
|
start_precmd="yppasswdd_precmd"
|
|
|
|
|
2001-06-16 07:16:14 +00:00
|
|
|
yppasswdd_precmd()
|
|
|
|
{
|
2006-12-30 22:53:20 +00:00
|
|
|
local _domain
|
|
|
|
|
2012-02-14 10:51:24 +00:00
|
|
|
force_depend rpcbind || return 1
|
|
|
|
force_depend ypserv nis_server || return 1
|
|
|
|
|
2001-06-16 07:16:14 +00:00
|
|
|
_domain=`domainname`
|
|
|
|
if [ -z "$_domain" ]; then
|
2003-07-09 03:21:03 +00:00
|
|
|
warn "NIS domainname(1) is not set."
|
2001-06-16 07:16:14 +00:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
run_rc_command "$1"
|