freebsd-dev/etc/rc.d/ypbind
Bill Fenner 04b3b6443c Force rpcbind to start even if it wasn't enabled. This solves the ypbind
problems people were having at startup.

Approved by:    re
2002-11-04 20:51:20 +00:00

49 lines
724 B
Bash
Executable File

#!/bin/sh
#
# $NetBSD: ypbind,v 1.5 2002/03/22 04:34:01 thorpej Exp $
# $FreeBSD$
#
# PROVIDE: ypbind
# REQUIRE: ypserv
# BEFORE: DAEMON
# KEYWORD: FreeBSD NetBSD
. /etc/rc.subr
name="ypbind"
command="/usr/sbin/${name}"
start_precmd="ypbind_precmd"
case ${OSTYPE} in
FreeBSD)
rcvar="nis_client_enable"
command_args="${nis_client_flags}"
;;
NetBSD)
rcvar=$name
;;
esac
ypbind_precmd()
{
case ${OSTYPE} in
FreeBSD)
if ! checkyesno rpcbind_enable && \
! /etc/rc.d/rpcbind forcestatus 1>/dev/null 2>&1
then
force_depend rpcbind || return 1
fi
;;
esac
_domain=`domainname`
if [ -z "$_domain" ]; then
warn "domainname(1) is not set."
return 1
fi
}
load_rc_config $name
run_rc_command "$1"