From owner-freebsd-current Fri Jun 14 10:40:43 2002 Delivered-To: freebsd-current@freebsd.org Received: from smtp040.tiscali.dk (smtp040.tiscali.dk [212.54.64.106]) by hub.freebsd.org (Postfix) with ESMTP id 3592537B408 for ; Fri, 14 Jun 2002 10:40:31 -0700 (PDT) Received: from snicki.dk (114.adsl0.abc.worldonline.dk [213.237.17.114]) by smtp040.tiscali.dk (8.12.4/8.12.4) with ESMTP id g5EHeOhc003226; Fri, 14 Jun 2002 19:40:25 +0200 (MEST) Message-ID: <3D0A2A07.9080504@snicki.dk> Date: Fri, 14 Jun 2002 19:38:15 +0200 From: Dennis Kristensen User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.0.0) Gecko/20020612 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Gordon Tetlow Cc: current@freebsd.org Subject: Re: HEADS UP: rc.d is in the tree References: <3D09EF88.3010807@snicki.dk> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit 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 Dennis Kristensen wrote: > Gordon Tetlow wrote: > >> ... >> Please try out the functionality by putting rc_ng="YES" into your >> rc.conf and post any problems you might have. >> >> > I have given this a try, but have a few problems. My rc.conf is attached. > > 2: > Setting mta_start_script to "", drops me into a shell. I need to > manually exit the shell to continue booting. How should i prevent > mta's from starting now? sendmail_enable="NONE" did'nt help either. This can be fixed with below patch. It still complains with /etc/rc: WARNING: $sendmail_enable is not set properly. but sendmail is no longer started. -Dennis ~$ diff -u /usr/src/etc/rc.d/sendmail /etc/rc.d/sendmail --- /usr/src/etc/rc.d/sendmail Fri Jun 14 09:47:25 2002 +++ /etc/rc.d/sendmail Fri Jun 14 18:44:39 2002 @@ -64,7 +64,7 @@ case `${CMD_OSTYPE}` in FreeBSD) - case $SENDMAIL_ENABLE in + case $sendmail_enable in NONE) exit ;; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message