Formatting and removal of unneccessary line
This commit is contained in:
parent
bc4ee9e0f1
commit
9b916ccaf5
2 changed files with 2 additions and 10 deletions
|
|
@ -17,4 +17,3 @@ es_data_dirs: "/var/lib/elasticsearch"
|
||||||
es_log_dir: "/var/log/elasticsearch"
|
es_log_dir: "/var/log/elasticsearch"
|
||||||
es_work_dir: "/tmp/elasticsearch"
|
es_work_dir: "/tmp/elasticsearch"
|
||||||
es_plugin_dir: "/usr/share/elasticsearch/plugins"
|
es_plugin_dir: "/usr/share/elasticsearch/plugins"
|
||||||
es_proxy_port: 8080
|
|
||||||
|
|
@ -30,14 +30,7 @@
|
||||||
- name: Install elasticsearch plugins
|
- name: Install elasticsearch plugins
|
||||||
#debug: var=item
|
#debug: var=item
|
||||||
command: >
|
command: >
|
||||||
{{es_home}}/bin/plugin install
|
{{es_home}}/bin/plugin install {{ item.plugin }}{% if item.version is defined and item.version != '' %}/{{ item.version }}{% endif %} {% if item.proxy_host is defined and item.proxy_host != '' and item.proxy_port is defined and item.proxy_port != ''%} -DproxyHost={{ item.proxy_host }} -DproxyPort={{ item.proxy_port }} {% elif es_proxy_host is defined and es_proxy_host != '' %} -DproxyHost={{ es_proxy_host }} -DproxyPort={{ es_proxy_port }} {% endif %} --silent
|
||||||
{{ item.plugin }}{% if item.version is defined and item.version != '' %}/{{ item.version }}{% endif %}
|
|
||||||
{% if item.proxy_host is defined and item.proxy_host != '' and item.proxy_port is defined and item.proxy_port != ''%}
|
|
||||||
-DproxyHost={{ item.proxy_host }} -DproxyPort={{ item.proxy_port }}
|
|
||||||
{% elif es_proxy_host is defined and es_proxy_host != '' %}
|
|
||||||
-DproxyHost={{ es_proxy_host }} -DproxyPort={{ es_proxy_port }}
|
|
||||||
{% endif %}
|
|
||||||
--silent
|
|
||||||
register: plugin_installed
|
register: plugin_installed
|
||||||
failed_when: "'ERROR' in plugin_installed.stdout"
|
failed_when: "'ERROR' in plugin_installed.stdout"
|
||||||
changed_when: plugin_installed.rc == 0
|
changed_when: plugin_installed.rc == 0
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue