Closed dpneumo closed 4 years ago
This line occurs twice in tasks/main.yml:
when: "{{ postgresql_version | version_compare('9.3', '>=') }}"
Replacing it with:
when: postgresql_version >= '9.3'
avoids this deprecation warning from Ansible 2.5:
Using tests as filters is deprecated. Instead of using`result|version_compare` instead use `result is version_compare`. This feature will be removed in version 2.9.
Thanks @dpneumo, this was fixed in #18.
This line occurs twice in tasks/main.yml:
Replacing it with:
avoids this deprecation warning from Ansible 2.5: