NetBSD/etc/rc.d/yppasswdd

29 lines
446 B
Plaintext
Raw Normal View History

2000-03-10 14:53:23 +03:00
#!/bin/sh
#
# $NetBSD: yppasswdd,v 1.6 2002/03/22 04:34:01 thorpej Exp $
2000-03-10 14:53:23 +03:00
#
# PROVIDE: yppasswdd
# REQUIRE: ypserv ypbind
# BEFORE: LOGIN
2000-03-10 14:53:23 +03:00
. /etc/rc.subr
name="yppasswdd"
rcvar=$name
2000-03-10 14:53:23 +03:00
command="/usr/sbin/rpc.${name}"
required_vars="rpcbind ypserv"
2000-03-10 14:53:23 +03:00
start_precmd="yppasswdd_precmd"
yppasswdd_precmd()
{
_domain=`domainname`
if [ -z "$_domain" ]; then
warn "domainname(1) is not set."
2000-03-10 14:53:23 +03:00
return 1
fi
}
load_rc_config $name
2000-03-10 14:53:23 +03:00
run_rc_command "$1"