From owner-svn-src-head@FreeBSD.ORG Thu Dec 27 07:52:51 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8E0D3AB1; Thu, 27 Dec 2012 07:52:51 +0000 (UTC) (envelope-from dteske@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 729A38FC0A; Thu, 27 Dec 2012 07:52:51 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBR7qpEV036149; Thu, 27 Dec 2012 07:52:51 GMT (envelope-from dteske@svn.freebsd.org) Received: (from dteske@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBR7qp9b036148; Thu, 27 Dec 2012 07:52:51 GMT (envelope-from dteske@svn.freebsd.org) Message-Id: <201212270752.qBR7qp9b036148@svn.freebsd.org> From: Devin Teske Date: Thu, 27 Dec 2012 07:52:51 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r244727 - head/usr.sbin/bsdconfig/startup/share X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Dec 2012 07:52:51 -0000 Author: dteske Date: Thu Dec 27 07:52:50 2012 New Revision: 244727 URL: http://svnweb.freebsd.org/changeset/base/244727 Log: Comments and fit to 80-columns. Modified: head/usr.sbin/bsdconfig/startup/share/rcvar.subr Modified: head/usr.sbin/bsdconfig/startup/share/rcvar.subr ============================================================================== --- head/usr.sbin/bsdconfig/startup/share/rcvar.subr Thu Dec 27 04:29:14 2012 (r244726) +++ head/usr.sbin/bsdconfig/startup/share/rcvar.subr Thu Dec 27 07:52:50 2012 (r244727) @@ -107,11 +107,11 @@ f_startup_rcvar_map() )" # - # Calculate a digest given the checksums of all dependencies (scripts and - # the defaults file). This digest will be used to determine if an on-disk - # global persistant cache file (containg this digest on the first line) - # is valid and can be used to quickly populate the cache value for - # immediate return. + # Calculate a digest given the checksums of all dependencies (scripts + # and the defaults file). This digest will be used to determine if an + # on-disk global persistant cache file (containg this digest on the + # first line) is valid and can be used to quickly populate the cache + # value for immediate return. # local rc_script_list_digest rc_script_list_digest=$( cd "$ETC_RC_D" && @@ -131,11 +131,12 @@ f_startup_rcvar_map() read digest rest_ignored # - # If the stored digest matches the calculated-one - # populate the in-memory cache from the on-disk - # cache and provide success exit status. + # If the stored digest matches the calculated- + # one populate the in-memory cache from the on- + # disk cache and provide success exit status. # - if [ "$digest" = "$rc_script_list_digest" ]; then + if [ "$digest" = "$rc_script_list_digest" ] + then cat exit $SUCCESS else @@ -151,7 +152,7 @@ f_startup_rcvar_map() echo "$STARTUP_RCVAR_MAP" return $SUCCESS fi - # Otherwise, fall-through to create in-memory cache from scratch + # Otherwise, fall-thru to create in-memory cache from scratch fi #