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 edd10576ca)
This commit is contained in:
Jesse Pretorius (odyssey4me) 2020-01-27 19:39:07 +00:00
parent 4291cb64ed
commit e04f031b81
1 changed files with 0 additions and 1 deletions

View File

@ -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 }}"