Sha256: 44c2f6c4a6ebb42f31d3ae9cb243cc6e5af2eda3373d0290868d94c85fa9b810

Contents?: true

Size: 740 Bytes

Versions: 10

Compression:

Stored size: 740 Bytes

Contents

#!/bin/sh

CDPATH=""
SCRIPT="$0"

# SCRIPT may be an arbitrarily deep series of symlinks. Loop until we have the concrete path.
while [ -h "$SCRIPT" ] ; do
  ls=`ls -ld "$SCRIPT"`
  # Drop everything prior to ->
  link=`expr "$ls" : '.*-> \(.*\)$'`
  if expr "$link" : '/.*' > /dev/null; then
    SCRIPT="$link"
  else
    SCRIPT=`dirname "$SCRIPT"`/"$link"
  fi
done

# determine elasticsearch home
ES_HOME=`dirname "$SCRIPT"`/..

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


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

exec $JAVA $JAVA_OPTS -Xmx64m -Xms16m -Delasticsearch -Des.path.home="$ES_HOME" -cp "$ES_HOME/lib/*" org.elasticsearch.plugins.PluginManager $*

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
springboard-0.90.2 vendor/elasticsearch/bin/plugin
springboard-0.90.1 vendor/elasticsearch/bin/plugin
springboard-0.90.0 vendor/elasticsearch/bin/plugin
springboard-0.20.6 vendor/elasticsearch/bin/plugin
springboard-0.20.5 vendor/elasticsearch/bin/plugin
springboard-0.20.4 vendor/elasticsearch/bin/plugin
springboard-0.20.2 vendor/elasticsearch/bin/plugin
springboard-0.20.1 vendor/elasticsearch/bin/plugin
springboard-0.20.0 vendor/elasticsearch/bin/plugin
springboard-0.19.11 vendor/elasticsearch/bin/plugin