1 #!/bin/sh 2 # 3 # $NetBSD: ypserv,v 1.2 2000/03/16 22:22:15 lukem Exp $ 4 # 5 6 # PROVIDE: ypserv 7 # REQUIRE: portmap 8 9 . /etc/rc.subr 10 . /etc/rc.conf 11 12 name="ypserv" 13 command="/usr/sbin/${name}" 14 required_vars="portmap" 15 start_precmd="ypserv_precmd" 16 17 ypserv_precmd() 18 { 19 _domain=`domainname` 20 if [ -z "$_domain" ]; then 21 warn "domainname(1) is not set; ${name} not started" 22 return 1 23 fi 24 25 if [ ! -d /var/yp/$_domain/. ]; then 26 warn "/var/yp/$_domain is not a directory; ${name} not started" 27 return 1 28 fi 29 } 30 31 run_rc_command "$1" 32