Date: Thu, 7 Nov 2013 23:01:41 +0000 (UTC) From: Devin Teske <dteske@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r257828 - head/usr.sbin/sysrc Message-ID: <201311072301.rA7N1fXT097911@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dteske Date: Thu Nov 7 23:01:41 2013 New Revision: 257828 URL: http://svnweb.freebsd.org/changeset/base/257828 Log: Comments and whitespace. Modified: head/usr.sbin/sysrc/sysrc Modified: head/usr.sbin/sysrc/sysrc ============================================================================== --- head/usr.sbin/sysrc/sysrc Thu Nov 7 23:00:11 2013 (r257827) +++ head/usr.sbin/sysrc/sysrc Thu Nov 7 23:01:41 2013 (r257828) @@ -215,7 +215,7 @@ jail_depend() echo "$SYSRC_VERSION" exit 1 ;; -[fRj]) # These flags take an argument - shift 1;; + shift 1 ;; esac shift 1 done @@ -537,9 +537,10 @@ while [ $# -gt 0 ]; do *=*) # # Like sysctl(8), if both `-d' AND "name=value" is passed, - # first describe, then attempt to set + # first describe (done above), then attempt to set # + # If verbose, prefix line with where the directive lives if [ "$SYSRC_VERBOSE" -a ! "$CHECK_ONLY" ]; then file=$( f_sysrc_find "$NAME" ) [ "$file" = "$RC_DEFAULTS" -o ! "$file" ] && \ @@ -613,8 +614,8 @@ while [ $# -gt 0 ]; do fi # - # Like sysctl(8), when `-d' is passed, - # desribe it rather than expanding it + # Like sysctl(8), when `-d' is passed, desribe it + # (already done above) rather than expanding it # if [ "$DESCRIBE" ]; then @@ -658,3 +659,7 @@ while [ $# -gt 0 ]; do done [ ! "$CHECK_ONLY" ] || exit $costatus + +################################################################################ +# END +################################################################################
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311072301.rA7N1fXT097911>