From cb0f664b666cce094ee5648866de56f472744f3a Mon Sep 17 00:00:00 2001 From: Sean Busbey Date: Mon, 27 Apr 2015 00:51:16 -0500 Subject: [PATCH] HBASE-13570 echo ulimit output to log during daemon foreground start. --- bin/hbase-daemon.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/hbase-daemon.sh b/bin/hbase-daemon.sh index e411dad..fa5c9fd 100755 --- a/bin/hbase-daemon.sh +++ b/bin/hbase-daemon.sh @@ -204,7 +204,7 @@ case $startStop in (foreground_start) # Add to the command log file vital stats on our environment. echo "`date` Starting $command on `hostname`" >> ${HBASE_LOGLOG} - `ulimit -a` >> "$HBASE_LOGLOG" 2>&1 + echo "`ulimit -a`" >> "$HBASE_LOGLOG" 2>&1 # in case the parent shell gets the kill make sure to trap signals. # Only one will get called. Either the trap or the flow will go through. trap cleanAfterRun SIGHUP SIGINT SIGTERM EXIT -- 1.7.10.2 (Apple Git-33)