Description
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