Don't ignore errors when uninstalling plugins

This commit is contained in:
Michael Russell 2018-06-13 11:10:25 +02:00
parent 929a860fd3
commit 943797d564
No known key found for this signature in database
GPG key ID: A90C1696496085FE

View file

@ -49,7 +49,6 @@
- name: Remove elasticsearch plugins
become: yes
command: "{{es_home}}/bin/elasticsearch-plugin remove {{item}} --silent"
ignore_errors: yes
with_items: "{{ plugins_to_remove | default([]) }}"
notify: restart elasticsearch
register: plugin_removed