You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ansible 2.9 (released Oct 31) removed the 'version_compare' filter (ref ansible/issues/64174)
As such, the following line from configure.yml: when: ansible_distribution_version|version_compare(7, '=') and wildfly_manage_firewall
Is throwing the following error: "AnsibleError: template error while templating string: no filter named 'version_compare'"
The text was updated successfully, but these errors were encountered:
jadbaz
added a commit
to jadbaz/wildfly
that referenced
this issue
Nov 18, 2019
This fixes both:
- [inkatze#42](inkatze#43): using ansible_distribution_major_version instead of ansible_distribution_version
- [inkatze#62](inkatze#62): using is version instead of version_compare
This fixes both:
- [inkatze#42](inkatze#43): using ansible_distribution_major_version instead of ansible_distribution_version
- [inkatze#62](inkatze#62): using is version instead of version_compare
Ansible 2.9 (released Oct 31) removed the 'version_compare' filter (ref ansible/issues/64174)
As such, the following line from configure.yml:
when: ansible_distribution_version|version_compare(7, '=') and wildfly_manage_firewall
Is throwing the following error:
"AnsibleError: template error while templating string: no filter named 'version_compare'"
The text was updated successfully, but these errors were encountered: