Fixes an issue with handlers in Ansible 2.2.1+ [https://github.com/ansible/ansible/issues/20603](). Moves the load-templates handler to the top of the file to get around this issue. Fixes an issue loading installed templates into ES. The use of file lookup meant that the template files are checked on the machine that initiated the Ansible play, this only works if Ansible has been run locally, breaking for remote machines. Switched to using the slurp module to grab file contents on the target machine.
17 lines
1,014 B
YAML
17 lines
1,014 B
YAML
---
|
|
|
|
#Templates are a handler as they need to come after a restart e.g. suppose user removes security on a running node and doesn't
|
|
#specify es_api_basic_auth_username and es_api_basic_auth_password. The templates will subsequently not be removed if we don't wait for the node to restart.
|
|
#Templates done after restart therefore - as a handler.
|
|
|
|
- name: load-templates
|
|
include: ./handlers/elasticsearch-templates.yml
|
|
when: es_templates
|
|
|
|
- name: reload systemd configuration
|
|
command: systemctl daemon-reload
|
|
|
|
# Restart service and ensure it is enabled
|
|
- name: restart elasticsearch
|
|
service: name={{instance_init_script | basename}} state=restarted enabled=yes
|
|
when: es_restart_on_change and es_start_service and ((plugin_installed is defined and plugin_installed.changed) or (config_updated is defined and config_updated.changed) or (xpack_state.changed) or (debian_elasticsearch_install_from_repo.changed or redhat_elasticsearch_install_from_repo.changed or elasticsearch_install_from_package.changed))
|