From e04f031b811086ff5805b7ead19d1a019a9fe77b 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 (cherry picked from commit edd10576ca33337b09070da204a88d189456a5e2) --- 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 41478efa31..34b201e9fe 100644 --- a/deployment/aodh/aodh-evaluator-container-puppet.yaml +++ b/deployment/aodh/aodh-evaluator-container-puppet.yaml @@ -147,7 +147,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 }}"