Skip to content

Commit

Permalink
Startup script: fix shell quoting.
Browse files Browse the repository at this point in the history
Paths should be quoted to avoid problems with spaces.
Arguments to the `case' command do not need to be quoted as it doesn't
undergo word splitting.
  • Loading branch information
tsuna authored and kimchy committed Apr 22, 2011
1 parent 0319972 commit 50a475f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 15 deletions.
22 changes: 11 additions & 11 deletions bin/elasticsearch
Expand Up @@ -66,10 +66,10 @@ done
ES_HOME=`dirname "$SCRIPT"`/..

# make ELASTICSEARCH_HOME absolute
ES_HOME=`cd $ES_HOME; pwd`
ES_HOME=`cd "$ES_HOME"; pwd`


if [ -x $JAVA_HOME/bin/java ]; then
if [ -x "$JAVA_HOME/bin/java" ]; then
JAVA=$JAVA_HOME/bin/java
else
JAVA=`which java`
Expand All @@ -82,24 +82,24 @@ if [ "x$ES_INCLUDE" = "x" ]; then
/usr/local/share/elasticsearch/elasticsearch.in.sh \
/opt/elasticsearch/elasticsearch.in.sh \
~/.elasticsearch.in.sh \
`dirname $0`/elasticsearch.in.sh; do
if [ -r $include ]; then
. $include
`dirname "$0"`/elasticsearch.in.sh; do
if [ -r "$include" ]; then
. "$include"
break
fi
done
# ...otherwise, source the specified include.
elif [ -r $ES_INCLUDE ]; then
. $ES_INCLUDE
elif [ -r "$ES_INCLUDE" ]; then
. "$ES_INCLUDE"
fi

if [ -z $ES_CLASSPATH ]; then
if [ -z "$ES_CLASSPATH" ]; then
echo "You must set the ES_CLASSPATH var" >&2
exit 1
fi

# Special-case path variables.
case "`uname`" in
case `uname` in
CYGWIN*)
ES_CLASSPATH=`cygpath -p -w "$ES_CLASSPATH"`
;;
Expand All @@ -126,7 +126,7 @@ launch_service()
# Startup ElasticSearch, background it, and write the pid.
exec $JAVA $JAVA_OPTS $ES_JAVA_OPTS $es_parms -cp $ES_CLASSPATH $props \
org.elasticsearch.bootstrap.ElasticSearch <&- &
[ ! -z $pidpath ] && printf "%d" $! > $pidpath
[ ! -z "$pidpath" ] && printf '%d' $! > "$pidpath"
fi

return $?
Expand All @@ -137,7 +137,7 @@ args=`getopt vfhp:D:X: "$@"`
eval set -- "$args"

while true; do
case "$1" in
case $1 in
-v)
$JAVA $JAVA_OPTS $ES_JAVA_OPTS $es_parms -cp $ES_CLASSPATH $props \
org.elasticsearch.Version
Expand Down
7 changes: 3 additions & 4 deletions bin/plugin
Expand Up @@ -18,16 +18,15 @@ done
ES_HOME=`dirname "$SCRIPT"`/..

# make ELASTICSEARCH_HOME absolute
ES_HOME=`cd $ES_HOME; pwd`
ES_HOME=`cd "$ES_HOME"; pwd`


if [ -x $JAVA_HOME/bin/java ]; then
if [ -x "$JAVA_HOME/bin/java" ]; then
JAVA=$JAVA_HOME/bin/java
else
JAVA=`which java`
fi

CLASSPATH=$CLASSPATH:$ES_HOME/lib/*

$JAVA -Delasticsearch -Des.path.home=$ES_HOME -cp $CLASSPATH org.elasticsearch.plugins.PluginManager $*

exec $JAVA -Delasticsearch -Des.path.home="$ES_HOME" -cp $CLASSPATH org.elasticsearch.plugins.PluginManager $*

0 comments on commit 50a475f

Please sign in to comment.