From c2e51f8ecfdcb99c8e2b0b177b372ac7fcd432ee Mon Sep 17 00:00:00 2001 From: Michael Russell Date: Thu, 27 Dec 2018 17:35:44 +0100 Subject: [PATCH] Fix jinja syntax variable fun How it was previously "worked" but just ignored trying to remove the package. Luckily it was caught by the test-kitchen testing! --- tasks/elasticsearch-RedHat.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/elasticsearch-RedHat.yml b/tasks/elasticsearch-RedHat.yml index aa59b9c..d002991 100644 --- a/tasks/elasticsearch-RedHat.yml +++ b/tasks/elasticsearch-RedHat.yml @@ -23,7 +23,7 @@ - name: RedHat - Remove the other elasticsearch package if switching between OSS and standard become: yes yum: - name: es_other_package_name + name: '{{ es_other_package_name }}' state: 'absent' - name: RedHat - Install Elasticsearch