Refactor deprecated filter calls

Previously, each of the calls generated a warning : "Using tests as
filters is deprecated. Instead of using `result|version_compare` use
`result is version_compare`. This feature will be removed in version
2.9.".
This commit is contained in:
Michel Weitbrecht 2018-12-27 22:47:24 +01:00
parent f89f56bc34
commit a10676384f
9 changed files with 18 additions and 18 deletions

View file

@ -14,7 +14,7 @@
#-----------------------------Create Bootstrap User-----------------------------------
### START BLOCK elasticsearch keystore ###
- name: create the elasticsearch keystore
when: (es_enable_xpack and "security" in es_xpack_features) and (es_version | version_compare('6.0.0', '>'))
when: (es_enable_xpack and "security" in es_xpack_features) and (es_version is version_compare('6.0.0', '>'))
block:
- name: create the keystore if it doesn't exist yet
become: yes