freebsd-dev/etc/rc.d/yppasswdd
Gordon Tetlow 27bc1b287e Merge in all the changes that Mike Makonnen has been maintaining for a
while. This is only the script pieces, the glue for the build comes next.

Submitted by:	Mike Makonnen <makonnen@pacbell.net>
Reviewed by:	silence on -current and -hackers
Prodded by:	rwatson
2002-06-13 22:14:37 +00:00

41 lines
659 B
Bash
Executable File

#!/bin/sh
#
# $NetBSD: yppasswdd,v 1.6 2002/03/22 04:34:01 thorpej Exp $
# $FreeBSD$
#
# PROVIDE: yppasswdd
# REQUIRE: ypserv ypbind
# BEFORE: LOGIN
# KEYWORD: FreeBSD NetBSD
. /etc/rc.subr
name="yppasswdd"
command="/usr/sbin/rpc.{name}"
start_precmd="yppasswdd_precmd"
case `${CMD_OSTYPE}` in
FreeBSD)
rcvar="nis_yppasswdd_enable"
required_vars="portmap_enable nis_server_enable"
command_args="${nis_yppasswdd_flags}"
;;
NetBSD)
rcvar=$name
required_vars="rpcbind ypserv"
;;
esac
yppasswdd_precmd()
{
_domain=`domainname`
if [ -z "$_domain" ]; then
warn "domainname(1) is not set."
return 1
fi
}
load_rc_config $name
run_rc_command "$1"