NetBSD/etc/rc.d/ypbind

28 lines
413 B
Plaintext
Raw Normal View History

2000-03-10 14:53:23 +03:00
#!/bin/sh
#
# $NetBSD: ypbind,v 1.7 2004/10/11 14:11:43 lukem Exp $
2000-03-10 14:53:23 +03:00
#
# PROVIDE: ypbind
# REQUIRE: rpcbind ypserv
# BEFORE: DAEMON
2000-03-10 14:53:23 +03:00
$_rc_subr_loaded . /etc/rc.subr
2000-03-10 14:53:23 +03:00
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"