From ee9f27546bc99c8b18b5ee8500199bd0c7c283f6 Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Sat, 15 Nov 2014 21:12:49 +0000 Subject: [PATCH] Removing command-echoing in start script and adding info output --- elasticsearch/start | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/elasticsearch/start b/elasticsearch/start index fd9266c0..ba20c619 100755 --- a/elasticsearch/start +++ b/elasticsearch/start @@ -1,7 +1,5 @@ #!/bin/sh -set -x - if [ ! -e /conf/elasticsearch.* ]; then cp $ES_HOME/config/elasticsearch.yml /conf fi @@ -36,8 +34,10 @@ fi if [ -n "$PLUGINS" ]; then for p in $(echo $PLUGINS | awk -v RS=, '{print}') do + echo "Installing the plugin $p" $ES_HOME/bin/plugin --install $p done fi +echo "Starting Elasticsearch with the options $OPTS" $ES_HOME/bin/elasticsearch $OPTS