From ff4fb1f7ee3236f4a6d7fe5b677c11ba593c50c0 Mon Sep 17 00:00:00 2001
From: KarthikTunga <karthik.tunga@gmail.com>
Date: Wed, 16 Oct 2013 22:55:15 -0700
Subject: [PATCH] SPARK-627 , Implementing --config arguments in the scripts

---
 bin/slaves.sh       | 2 +-
 bin/spark-daemon.sh | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/bin/slaves.sh b/bin/slaves.sh
index aeb0c0f6be..c367c2fd8e 100755
--- a/bin/slaves.sh
+++ b/bin/slaves.sh
@@ -47,7 +47,7 @@ bin=`cd "$bin"; pwd`
 HOSTLIST=$SPARK_SLAVES
 
 # Check if --config is passed as an argument. It is an optional parameter.
-# Exit if the argument is a directory.
+# Exit if the argument is not a directory.
 if [ "$1" == "--config" ]
 then
   shift
diff --git a/bin/spark-daemon.sh b/bin/spark-daemon.sh
index 262ef173be..a0c0d44b58 100755
--- a/bin/spark-daemon.sh
+++ b/bin/spark-daemon.sh
@@ -45,7 +45,7 @@ bin=`cd "$bin"; pwd`
 # get arguments
 
 # Check if --config is passed as an argument. It is an optional parameter.
-# Exit if the argument is a directory.
+# Exit if the argument is not a directory.
 
 if [ "$1" == "--config" ]
 then
-- 
GitLab