Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 Jan 2012 10:31:27 +0000 (UTC)
From:      Doug Barton <dougb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r230374 - head/etc
Message-ID:  <201201201031.q0KAVRoc035829@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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?201201201031.q0KAVRoc035829>