NetBSD/etc/rc.d/ypbind

27 lines
370 B
Plaintext
Raw Normal View History

2000-03-10 14:53:23 +03:00
#!/bin/sh
#
# $NetBSD: ypbind,v 1.4 2000/09/19 13:04:39 lukem Exp $
2000-03-10 14:53:23 +03:00
#
# PROVIDE: ypbind
# REQUIRE: ypserv
. /etc/rc.subr
name="ypbind"
rcvar=$name
2000-03-10 14:53:23 +03:00
command="/usr/sbin/${name}"
start_precmd="ypbind_precmd"
ypbind_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"