Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 Jan 2012 02:41:38 -0800 (PST)
From:      Doug Barton <dougb@FreeBSD.org>
To:        freebsd-rc@FreeBSD.org
Subject:   svn commit: r230374 - head/etc (fwd)
Message-ID:  <alpine.BSF.2.00.1201200239220.15091@172-17-198-245.tybonyfhvgr.arg>

next in thread | raw e-mail | index | archive | help
FYI.

This was discussed when the PR was submitted, and I didn't see any 
objection. Now that the release is done I'd like to see this get wider 
exposure.

I don't plan to MFC this right away. I'm inclined to wait about a month 
before moving it to stable/9, then wait till after 8.3 to merge it to 
stable/8. All assuming that there are no problems of course.


Doug

-- 

 	It's always a long day; 86400 doesn't fit into a short.

 	Breadth of IT experience, and depth of knowledge in the DNS.
 	Yours for the right price.  :)  http://SupersetSolutions.com/


---------- Forwarded message ----------
From: Doug Barton <dougb@FreeBSD.org>
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
     svn-src-head@freebsd.org
Date: Fri, 20 Jan 2012 02:31:27
Subject: svn commit: r230374 - head/etc

Author: dougb
Date: Fri Jan 20 10:31:27 2012
New Revision: 230374
URL: http://svn.freebsd.org/changeset/base/230374

Log:
   If we're booting there is no need to waste time determining if the service
   is running or not.

   PR:		conf/150752
   Submitted by:	YIN Xiaofeng <75394094@qq.com>

Modified:
   head/etc/rc.subr

Modified: head/etc/rc.subr
==============================================================================
--- head/etc/rc.subr	Fri Jan 20 10:06:28 2012	(r230373)
+++ head/etc/rc.subr	Fri Jan 20 10:31:27 2012	(r230374)
@@ -641,7 +641,7 @@ run_rc_command()
  		fi
  	fi

-	eval $_pidcmd			# determine the pid if necessary
+	[ -z "$autoboot" ] && eval $_pidcmd	# determine the pid if necessary

  	for _elem in $_keywords; do
  		if [ "$_elem" != "$rc_arg" ]; then




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