Return-Path: Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: (qmail 1129 invoked from network); 21 Apr 2009 16:19:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 21 Apr 2009 16:19:23 -0000 Received: (qmail 1419 invoked by uid 500); 21 Apr 2009 16:19:22 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 1341 invoked by uid 500); 21 Apr 2009 16:19:22 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 1332 invoked by uid 99); 21 Apr 2009 16:19:22 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Apr 2009 16:19:22 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Apr 2009 16:19:14 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6F85423889C4; Tue, 21 Apr 2009 16:18:53 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r767204 - /couchdb/trunk/bin/couchdb.tpl.in Date: Tue, 21 Apr 2009 16:18:53 -0000 To: commits@couchdb.apache.org From: nslater@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090421161853.6F85423889C4@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: nslater Date: Tue Apr 21 16:18:52 2009 New Revision: 767204 URL: http://svn.apache.org/viewvc?rev=767204&view=rev Log: only pick up files in configuration directories Modified: couchdb/trunk/bin/couchdb.tpl.in Modified: couchdb/trunk/bin/couchdb.tpl.in URL: http://svn.apache.org/viewvc/couchdb/trunk/bin/couchdb.tpl.in?rev=767204&r1=767203&r2=767204&view=diff ============================================================================== --- couchdb/trunk/bin/couchdb.tpl.in (original) +++ couchdb/trunk/bin/couchdb.tpl.in Tue Apr 21 16:18:52 2009 @@ -121,7 +121,7 @@ } _add_config_dir () { - for file in `find "$1" -mindepth 1`; do + for file in `find "$1" -mindepth 1 -type f`; do _add_config_file $file done }