Skip to content
This repository has been archived by the owner on Jun 24, 2022. It is now read-only.

Commit

Permalink
Move to full-path plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
robin13 committed May 26, 2015
1 parent 14df6c8 commit 444cab9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,18 @@ hosts: my_host
es_start_service: false
es_plugins_reinstall: false
es_plugins:
- plugin: elasticsearch-cloud-aws
- plugin: elasticsearch/elasticsearch-cloud-aws
version: 2.5.0
- plugin: marvel
- plugin: elasticsearch/marvel
version: latest
- plugin: license
- plugin: elasticsearch/license
version: latest
- plugin: shield
- plugin: elasticsearch/shield
version: latest
- plugin: elasticsearch-support-diagnostics
- plugin: elasticsearch/elasticsearch-support-diagnostics
version: latest
- plugin: lmenezes/elasticsearch-kopf
version: master
tasks:
- .... your tasks ...
```
Expand Down
2 changes: 1 addition & 1 deletion tasks/elasticsearch-plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

- name: Install elasticsearch plugins
#debug: var=item
command: /usr/share/elasticsearch/bin/plugin --install elasticsearch/{{ item.plugin }}/{{ item.version }} --silent
command: /usr/share/elasticsearch/bin/plugin --install {{ item.plugin }}/{{ item.version }} --silent
register: command_result
failed_when: "'Failed to install' in command_result.stderr"
changed_when: command_result.rc == 0
Expand Down

0 comments on commit 444cab9

Please sign in to comment.