bridge(4): document net.link.bridge.pfil_onlyip
[dragonfly.git] / etc / rc.d / ypbind
blobbe4a39f5ca717e54c27577c506f91bd31634d03f
1 #!/bin/sh
3 # $NetBSD: ypbind,v 1.5 2002/03/22 04:34:01 thorpej Exp $
4 # $FreeBSD: src/etc/rc.d/ypbind,v 1.6 2003/07/09 03:21:03 mtm Exp $
7 # PROVIDE: ypbind
8 # REQUIRE: ypserv
9 # BEFORE: DAEMON
11 . /etc/rc.subr
13 name="ypbind"
14 rcvar="nis_client_enable"
15 command="/usr/sbin/${name}"
16 command_args="${nis_client_flags}"
17 start_precmd="ypbind_precmd"
19 ypbind_precmd()
21 if ! checkyesno rpcbind_enable && \
22 ! /etc/rc.d/rpcbind forcestatus >/dev/null 2>&1
23 then
24 force_depend rpcbind || return 1
27 _domain=`domainname`
28 if [ -z "$_domain" ]; then
29 warn "NIS domainname(1) is not set."
30 return 1
34 load_rc_config $name
35 run_rc_command "$1"