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
[EMAIL PROTECTED]
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message