From edd10576ca33337b09070da204a88d189456a5e2 Mon Sep 17 00:00:00 2001 From: "Jesse Pretorius (odyssey4me)" Date: Mon, 27 Jan 2020 19:39:07 +0000 Subject: [PATCH] Remove stray conditional from aodh-evaluator tasks In Ib4c59302ad5ad64f23419cd69ee9b2a80333924e a conditional was moved incorrectly and left as a stray. Luckily it is only a cosmetic issue, but it might be confusing when doing any maintenance work so it's better to remove it. Change-Id: Iac3cbf23437bb11ec47dd1a0f189babe0c5587d0 --- deployment/aodh/aodh-evaluator-container-puppet.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/deployment/aodh/aodh-evaluator-container-puppet.yaml b/deployment/aodh/aodh-evaluator-container-puppet.yaml index f529760e97..65cf545394 100644 --- a/deployment/aodh/aodh-evaluator-container-puppet.yaml +++ b/deployment/aodh/aodh-evaluator-container-puppet.yaml @@ -139,7 +139,6 @@ outputs: command: systemctl is-enabled --quiet openstack-aodh-evaluator ignore_errors: True register: aodh_evaluator_enabled_result - - release == 'ocata' - name: Set fact aodh_evaluator_enabled set_fact: aodh_evaluator_enabled: "{{ aodh_evaluator_enabled_result.rc == 0 }}"