You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by cu...@apache.org on 2006/11/08 21:36:26 UTC

svn commit: r472628 - in /lucene/hadoop/trunk: CHANGES.txt bin/hadoop-daemon.sh

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