Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 25 Sep 2002 16:47:17 -0500
From:      Dan Nelson <dnelson@allantgroup.com>
To:        Lars Eggert <larse@ISI.EDU>
Cc:        Mikhail Teterin <mi@corbulon.video-collage.com>, current@FreeBSD.ORG
Subject:   Re: troubles with recent -current
Message-ID:  <20020925214717.GI16302@dan.emsphone.com>
In-Reply-To: <3D922A43.5080005@isi.edu>
References:  <200209252111.g8PLBhc4070008@corbulon.video-collage.com> <3D922A43.5080005@isi.edu>

next in thread | previous in thread | raw e-mail | index | archive | help
In the last episode (Sep 25), Lars Eggert said:
> Mikhail Teterin wrote:
> >Unless I set rc_ng to NO, the ypbind will not start, even though
> >enable_nis_client is set and "Starting ypbind" is displayed on boot.
> 
> Do you have rpcbind_enable set? ypbind needs the portmapper and will 
> silently exit if it isn't running.

Ooh. bug!  rc.d/ypbind should have the same check all the other
rpcbind-dependant scripts have:

ypserv_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
... }

-- 
	Dan Nelson
	dnelson@allantgroup.com

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020925214717.GI16302>