From owner-freebsd-current Wed Sep 25 14:47:26 2002 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95B6D37B401 for ; Wed, 25 Sep 2002 14:47:25 -0700 (PDT) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22F7C43E6A for ; Wed, 25 Sep 2002 14:47:25 -0700 (PDT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.12.6/8.12.5) id g8PLlHBt098930; Wed, 25 Sep 2002 16:47:17 -0500 (CDT) (envelope-from dan) Date: Wed, 25 Sep 2002 16:47:17 -0500 From: Dan Nelson To: Lars Eggert Cc: Mikhail Teterin , current@FreeBSD.ORG Subject: Re: troubles with recent -current Message-ID: <20020925214717.GI16302@dan.emsphone.com> References: <200209252111.g8PLBhc4070008@corbulon.video-collage.com> <3D922A43.5080005@isi.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3D922A43.5080005@isi.edu> X-OS: FreeBSD 5.0-CURRENT X-message-flag: Outlook Error User-Agent: Mutt/1.5.1i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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