From 8be13615793a964560b96eea7681e70a8e62d5d2 Mon Sep 17 00:00:00 2001 From: Jason Tedor Date: Wed, 6 Jun 2018 22:51:43 -0400 Subject: [PATCH] Adjust indentation in CLI scripts This commit adjusts the indentation in the CLI scripts to give a clear visual indication that the line being indented is a continuation of the previous line. --- distribution/src/bin/elasticsearch-keystore | 2 +- distribution/src/bin/elasticsearch-plugin | 2 +- distribution/src/bin/elasticsearch-translog | 2 +- x-pack/plugin/security/src/main/bin/elasticsearch-certgen | 2 +- x-pack/plugin/security/src/main/bin/elasticsearch-certutil | 2 +- x-pack/plugin/security/src/main/bin/elasticsearch-migrate | 2 +- x-pack/plugin/security/src/main/bin/elasticsearch-saml-metadata | 2 +- .../plugin/security/src/main/bin/elasticsearch-setup-passwords | 2 +- x-pack/plugin/security/src/main/bin/elasticsearch-syskeygen | 2 +- x-pack/plugin/security/src/main/bin/elasticsearch-users | 2 +- x-pack/plugin/watcher/src/main/bin/elasticsearch-croneval | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/distribution/src/bin/elasticsearch-keystore b/distribution/src/bin/elasticsearch-keystore index 7086342aabf..49e1aa7437a 100755 --- a/distribution/src/bin/elasticsearch-keystore +++ b/distribution/src/bin/elasticsearch-keystore @@ -1,5 +1,5 @@ #!/bin/bash ES_MAIN_CLASS=org.elasticsearch.common.settings.KeyStoreCli \ -"`dirname "$0"`"/elasticsearch-cli \ + "`dirname "$0"`"/elasticsearch-cli \ "$@" diff --git a/distribution/src/bin/elasticsearch-plugin b/distribution/src/bin/elasticsearch-plugin index fb9c8e5aa3f..1c11cfb35f2 100755 --- a/distribution/src/bin/elasticsearch-plugin +++ b/distribution/src/bin/elasticsearch-plugin @@ -1,6 +1,6 @@ #!/bin/bash ES_MAIN_CLASS=org.elasticsearch.plugins.PluginCli \ -ES_ADDITIONAL_CLASSPATH_DIRECTORIES=lib/tools/plugin-cli \ + ES_ADDITIONAL_CLASSPATH_DIRECTORIES=lib/tools/plugin-cli \ "`dirname "$0"`"/elasticsearch-cli \ "$@" diff --git a/distribution/src/bin/elasticsearch-translog b/distribution/src/bin/elasticsearch-translog index 28b2ea80a38..aa5bfb32df1 100755 --- a/distribution/src/bin/elasticsearch-translog +++ b/distribution/src/bin/elasticsearch-translog @@ -1,5 +1,5 @@ #!/bin/bash ES_MAIN_CLASS=org.elasticsearch.index.translog.TranslogToolCli \ -"`dirname "$0"`"/elasticsearch-cli \ + "`dirname "$0"`"/elasticsearch-cli \ "$@" diff --git a/x-pack/plugin/security/src/main/bin/elasticsearch-certgen b/x-pack/plugin/security/src/main/bin/elasticsearch-certgen index 582f3ed10f7..4a192ac3b16 100644 --- a/x-pack/plugin/security/src/main/bin/elasticsearch-certgen +++ b/x-pack/plugin/security/src/main/bin/elasticsearch-certgen @@ -5,6 +5,6 @@ # you may not use this file except in compliance with the Elastic License. ES_MAIN_CLASS=org.elasticsearch.xpack.core.ssl.CertificateGenerateTool \ -ES_ADDITIONAL_SOURCES="x-pack-env;x-pack-security-env" \ + ES_ADDITIONAL_SOURCES="x-pack-env;x-pack-security-env" \ "`dirname "$0"`"/elasticsearch-cli \ "$@" diff --git a/x-pack/plugin/security/src/main/bin/elasticsearch-certutil b/x-pack/plugin/security/src/main/bin/elasticsearch-certutil index 352a5e8364c..a13be812f0b 100644 --- a/x-pack/plugin/security/src/main/bin/elasticsearch-certutil +++ b/x-pack/plugin/security/src/main/bin/elasticsearch-certutil @@ -5,6 +5,6 @@ # you may not use this file except in compliance with the Elastic License. ES_MAIN_CLASS=org.elasticsearch.xpack.core.ssl.CertificateTool \ -ES_ADDITIONAL_SOURCES="x-pack-env;x-pack-security-env" \ + ES_ADDITIONAL_SOURCES="x-pack-env;x-pack-security-env" \ "`dirname "$0"`"/elasticsearch-cli \ "$@" diff --git a/x-pack/plugin/security/src/main/bin/elasticsearch-migrate b/x-pack/plugin/security/src/main/bin/elasticsearch-migrate index 604343e9e1b..183722d9c93 100755 --- a/x-pack/plugin/security/src/main/bin/elasticsearch-migrate +++ b/x-pack/plugin/security/src/main/bin/elasticsearch-migrate @@ -5,6 +5,6 @@ # you may not use this file except in compliance with the Elastic License. ES_MAIN_CLASS=org.elasticsearch.xpack.security.authc.esnative.ESNativeRealmMigrateTool \ -ES_ADDITIONAL_SOURCES="x-pack-env;x-pack-security-env" \ + ES_ADDITIONAL_SOURCES="x-pack-env;x-pack-security-env" \ "`dirname "$0"`"/elasticsearch-cli \ "$@" diff --git a/x-pack/plugin/security/src/main/bin/elasticsearch-saml-metadata b/x-pack/plugin/security/src/main/bin/elasticsearch-saml-metadata index 15c448fb9e9..2b2637b094d 100644 --- a/x-pack/plugin/security/src/main/bin/elasticsearch-saml-metadata +++ b/x-pack/plugin/security/src/main/bin/elasticsearch-saml-metadata @@ -5,6 +5,6 @@ # you may not use this file except in compliance with the Elastic License. ES_MAIN_CLASS=org.elasticsearch.xpack.security.authc.saml.SamlMetadataCommand \ -ES_ADDITIONAL_SOURCES="x-pack-env;x-pack-security-env" \ + ES_ADDITIONAL_SOURCES="x-pack-env;x-pack-security-env" \ "`dirname "$0"`"/elasticsearch-cli \ "$@" diff --git a/x-pack/plugin/security/src/main/bin/elasticsearch-setup-passwords b/x-pack/plugin/security/src/main/bin/elasticsearch-setup-passwords index b7ef0ad01f0..3c5887fc675 100644 --- a/x-pack/plugin/security/src/main/bin/elasticsearch-setup-passwords +++ b/x-pack/plugin/security/src/main/bin/elasticsearch-setup-passwords @@ -5,6 +5,6 @@ # you may not use this file except in compliance with the Elastic License. ES_MAIN_CLASS=org.elasticsearch.xpack.security.authc.esnative.tool.SetupPasswordTool \ -ES_ADDITIONAL_SOURCES="x-pack-env;x-pack-security-env" \ + ES_ADDITIONAL_SOURCES="x-pack-env;x-pack-security-env" \ "`dirname "$0"`"/elasticsearch-cli \ "$@" diff --git a/x-pack/plugin/security/src/main/bin/elasticsearch-syskeygen b/x-pack/plugin/security/src/main/bin/elasticsearch-syskeygen index 9d3ce7fece3..a5d988945fd 100755 --- a/x-pack/plugin/security/src/main/bin/elasticsearch-syskeygen +++ b/x-pack/plugin/security/src/main/bin/elasticsearch-syskeygen @@ -5,6 +5,6 @@ # you may not use this file except in compliance with the Elastic License. ES_MAIN_CLASS=org.elasticsearch.xpack.security.crypto.tool.SystemKeyTool \ -ES_ADDITIONAL_SOURCES="x-pack-env;x-pack-security-env" \ + ES_ADDITIONAL_SOURCES="x-pack-env;x-pack-security-env" \ "`dirname "$0"`"/elasticsearch-cli \ "$@" diff --git a/x-pack/plugin/security/src/main/bin/elasticsearch-users b/x-pack/plugin/security/src/main/bin/elasticsearch-users index 8fd0ed5a874..9d445887fee 100755 --- a/x-pack/plugin/security/src/main/bin/elasticsearch-users +++ b/x-pack/plugin/security/src/main/bin/elasticsearch-users @@ -5,6 +5,6 @@ # you may not use this file except in compliance with the Elastic License. ES_MAIN_CLASS=org.elasticsearch.xpack.security.authc.file.tool.UsersTool \ -ES_ADDITIONAL_SOURCES="x-pack-env;x-pack-security-env" \ + ES_ADDITIONAL_SOURCES="x-pack-env;x-pack-security-env" \ "`dirname "$0"`"/elasticsearch-cli \ "$@" diff --git a/x-pack/plugin/watcher/src/main/bin/elasticsearch-croneval b/x-pack/plugin/watcher/src/main/bin/elasticsearch-croneval index 451656e1463..1c55587f556 100755 --- a/x-pack/plugin/watcher/src/main/bin/elasticsearch-croneval +++ b/x-pack/plugin/watcher/src/main/bin/elasticsearch-croneval @@ -5,6 +5,6 @@ # you may not use this file except in compliance with the Elastic License. ES_MAIN_CLASS=org.elasticsearch.xpack.watcher.trigger.schedule.tool.CronEvalTool \ -ES_ADDITIONAL_SOURCES="x-pack-env;x-pack-watcher-env" \ + ES_ADDITIONAL_SOURCES="x-pack-env;x-pack-watcher-env" \ "`dirname "$0"`"/elasticsearch-cli \ "$@"