bin/hadoop.sh doesn't work for /bin/dash (eg ubuntu 6.10b)
----------------------------------------------------------

                 Key: HADOOP-683
                 URL: http://issues.apache.org/jira/browse/HADOOP-683
             Project: Hadoop
          Issue Type: Bug
          Components: scripts
         Environment: osx, ubuntu 6.10b
            Reporter: James Todd
            Priority: Trivial


bin/hadoop.sh has a conditional which doesn't work with /bin/dash which ubuntu 
6.10b symlinks to /bin/sh.

here's a trivial patch that works for me:

Index: bin/hadoop-daemon.sh
===================================================================
--- bin/hadoop-daemon.sh        (revision 468719)
+++ bin/hadoop-daemon.sh        (working copy)
@@ -56,7 +56,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


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to