summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThierno IB. BARRY <ibrahima.br@gmail.com>2016-09-04 09:47:02 +0200
committerRené Moser <mail@renemoser.net>2016-09-04 09:47:02 +0200
commit5c3be5ea286492efff91dcaa6e5cde7571e5f4c5 (patch)
tree9ac3bc28fc40faedd7971f6c51031103dc539913
parente6678a74966010b47ce001cc468f494879bd015c (diff)
downloadansible-modules-extras-5c3be5ea286492efff91dcaa6e5cde7571e5f4c5.tar.gz
elasticsearch_plugin: Fix bug when using proxy (#2603) (#2838)
-rw-r--r--packaging/elasticsearch_plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/elasticsearch_plugin.py b/packaging/elasticsearch_plugin.py
index 7472c033..d9c05b1a 100644
--- a/packaging/elasticsearch_plugin.py
+++ b/packaging/elasticsearch_plugin.py
@@ -167,7 +167,7 @@ def main():
cmd_args = [plugin_bin, package_state_map[state], name]
if proxy_host and proxy_port:
- cmd_args.append("-DproxyHost=%s -DproxyPort=%s" % proxy_host, proxy_port)
+ cmd_args.append("-DproxyHost=%s -DproxyPort=%s" % (proxy_host, proxy_port))
if url:
cmd_args.append("--url %s" % url)