Remove plugin script parsing of system properties

The plugin script parses command-line options looking for Java system
properties and extracts these arguments to pass to the java command when
starting the JVM. Since elasticsearch-plugin allows arbitrary user
arguments to the JVM via ES_JAVA_OPTS, this parsing is unnecessary. This
commit removes this unnecessary 

Relates #18207
This commit is contained in:
Jason Tedor 2016-05-09 13:06:18 -04:00
parent b7d02fbd1e
commit 7d1fd17172
5 changed files with 14 additions and 25 deletions

View file

@ -60,10 +60,10 @@ Plugins can be installed as follows:
The same goes for the x-plugins:
bin/elasticsearch-plugin -Des.plugins.staging=true install license
bin/elasticsearch-plugin -Des.plugins.staging=true install marvel-agent
bin/elasticsearch-plugin -Des.plugins.staging=true install shield
bin/elasticsearch-plugin -Des.plugins.staging=true install watcher
ES_JAVA_OPTS="-Des.plugins.staging=true" bin/elasticsearch-plugin install license
ES_JAVA_OPTS="-Des.plugins.staging=true" bin/elasticsearch-plugin install marvel-agent
ES_JAVA_OPTS="-Des.plugins.staging=true" bin/elasticsearch-plugin install shield
ES_JAVA_OPTS="-Des.plugins.staging=true" bin/elasticsearch-plugin install watcher
To install the deb from an APT repo: