Fix conditionals introduced in #408

This commit is contained in:
pemontto 2018-02-16 16:37:00 -05:00
parent d7a5af8c33
commit 27d81e68dd
3 changed files with 8 additions and 8 deletions

View file

@ -9,7 +9,7 @@
return_content: yes
register: license_activated
no_log: True
when: 'not "security" in es_xpack_features'
when: not "security" in es_xpack_features
failed_when: >
license_activated.status != 200 or
license_activated.json.license_status is not defined or
@ -27,7 +27,7 @@
return_content: yes
register: license_activated
no_log: True
when: '"security" in es_xpack_features'
when: "'security' in es_xpack_features"
failed_when: >
license_activated.status != 200 or
license_activated.json.license_status is not defined or