Return-Path: Delivered-To: apmail-lucene-hadoop-commits-archive@locus.apache.org Received: (qmail 47120 invoked from network); 8 Nov 2006 20:36:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 8 Nov 2006 20:36:56 -0000 Received: (qmail 37469 invoked by uid 500); 8 Nov 2006 20:37:07 -0000 Delivered-To: apmail-lucene-hadoop-commits-archive@lucene.apache.org Received: (qmail 37384 invoked by uid 500); 8 Nov 2006 20:37:06 -0000 Mailing-List: contact hadoop-commits-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hadoop-dev@lucene.apache.org Delivered-To: mailing list hadoop-commits@lucene.apache.org Received: (qmail 37366 invoked by uid 99); 8 Nov 2006 20:37:06 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Nov 2006 12:37:06 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Nov 2006 12:36:54 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id E89AC1A9846; Wed, 8 Nov 2006 12:36:26 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r472628 - in /lucene/hadoop/trunk: CHANGES.txt bin/hadoop-daemon.sh Date: Wed, 08 Nov 2006 20:36:26 -0000 To: hadoop-commits@lucene.apache.org From: cutting@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061108203626.E89AC1A9846@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: cutting Date: Wed Nov 8 12:36:26 2006 New Revision: 472628 URL: http://svn.apache.org/viewvc?view=rev&rev=472628 Log: HADOOP-683. Remove a script dependency on bash, so it works with dash, the new default for /bin/sh on Ubuntu. Contributed by James Todd. Modified: lucene/hadoop/trunk/CHANGES.txt lucene/hadoop/trunk/bin/hadoop-daemon.sh Modified: lucene/hadoop/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/lucene/hadoop/trunk/CHANGES.txt?view=diff&rev=472628&r1=472627&r2=472628 ============================================================================== --- lucene/hadoop/trunk/CHANGES.txt (original) +++ lucene/hadoop/trunk/CHANGES.txt Wed Nov 8 12:36:26 2006 @@ -16,8 +16,12 @@ 4. HADOOP-645. Fix a bug in contrib/streaming when -reducer is NONE. (Dhruba Borthakur via cutting) - 5. HADOOP-687. Fix a classpath bug in bin/hadoop that blocked the + 5. HADOOP-687. Fix a classpath bug in bin/hadoop that blocked the servers from starting. (Sameer Paranjpye via omalley) + + 6. HADOOP-683. Remove a script dependency on bash, so it works with + dash, the new default for /bin/sh on Ubuntu. (James Todd via cutting) + Release 0.8.0 - 2006-11-03 Modified: lucene/hadoop/trunk/bin/hadoop-daemon.sh URL: http://svn.apache.org/viewvc/lucene/hadoop/trunk/bin/hadoop-daemon.sh?view=diff&rev=472628&r1=472627&r2=472628 ============================================================================== --- lucene/hadoop/trunk/bin/hadoop-daemon.sh (original) +++ lucene/hadoop/trunk/bin/hadoop-daemon.sh Wed Nov 8 12:36:26 2006 @@ -73,7 +73,7 @@ pid=$HADOOP_PID_DIR/hadoop-$HADOOP_IDENT_STRING-$command.pid # Set default scheduling priority -if [ "$HADOOP_NICENESS" == "" ]; then +if [ "$HADOOP_NICENESS" = "" ]; then export HADOOP_NICENESS=0 fi