ypbind revision 1.2
11.1Slukem#!/bin/sh
21.1Slukem#
31.2Slukem# $NetBSD: ypbind,v 1.2 2000/03/16 22:22:15 lukem Exp $
41.1Slukem#
51.1Slukem
61.1Slukem# PROVIDE: ypbind
71.1Slukem# REQUIRE: ypserv
81.1Slukem
91.1Slukem. /etc/rc.subr
101.1Slukem. /etc/rc.conf
111.1Slukem
121.1Slukemname="ypbind"
131.1Slukemcommand="/usr/sbin/${name}"
141.1Slukemstart_precmd="ypbind_precmd"
151.1Slukem
161.1Slukemypbind_precmd()
171.1Slukem{
181.2Slukem	_domain=`domainname`
191.2Slukem	if [ -z "$_domain" ]; then
201.2Slukem		warn "domainname(1) is not set; ${name} not started"
211.1Slukem		return 1
221.1Slukem	fi
231.1Slukem}
241.1Slukem
251.1Slukemrun_rc_command "$1"
26