Date: Fri, 14 Jun 2002 19:38:15 +0200 From: Dennis Kristensen <snicki@snicki.dk> To: Gordon Tetlow <gordont@gnf.org> Cc: current@freebsd.org Subject: Re: HEADS UP: rc.d is in the tree Message-ID: <3D0A2A07.9080504@snicki.dk> References: <Pine.LNX.4.44.0206131534350.28471-100000@smtp.gnf.org> <3D09EF88.3010807@snicki.dk>
next in thread | previous in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3D0A2A07.9080504>