From owner-svn-src-all@FreeBSD.ORG Mon Jun 20 00:48:07 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A75EF1065670; Mon, 20 Jun 2011 00:48:07 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 7CC0C8FC13; Mon, 20 Jun 2011 00:48:07 +0000 (UTC) Received: from bigwig.baldwin.cx (66.111.2.69.static.nyinternet.net [66.111.2.69]) by cyrus.watson.org (Postfix) with ESMTPSA id 1CF6C46B2C; Sun, 19 Jun 2011 20:48:07 -0400 (EDT) Received: from John-Baldwins-Macbook-Pro.local (c-68-36-150-83.hsd1.nj.comcast.net [68.36.150.83]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 87E6E8A027; Sun, 19 Jun 2011 20:48:06 -0400 (EDT) Message-ID: <4DFE98C6.4050102@FreeBSD.org> Date: Sun, 19 Jun 2011 20:48:06 -0400 From: John Baldwin User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.2.17) Gecko/20110414 Thunderbird/3.1.10 MIME-Version: 1.0 To: Ivan Klymenko References: <20110619213749.0cf6397c@ukr.net> In-Reply-To: <20110619213749.0cf6397c@ukr.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.6 (bigwig.baldwin.cx); Sun, 19 Jun 2011 20:48:06 -0400 (EDT) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, Doug Barton Subject: Re: svn commit: r223264 - in head: etc/defaults etc/rc.d share/man/man5 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Jun 2011 00:48:07 -0000 On 6/19/11 2:37 PM, Ivan Klymenko wrote: > Hello! > Thanks for commit. > > I have a question: > If a lot of kernel modules, option kld_list = "" supports moving to a > new line? > For example: > kld_list = " ....< moduleN>\ > " > > Maybe specify its example of manual documentation page for rc.conf? > > Thank you! It's normal shell so you can always do this: kld_list="foo bar baz" kld_list="${kld_list} four five six" -- John Baldwin