Use version test instead of version_compare
This test was changed to 'version' in ansible 2.5 [1]. [1] https://docs.ansible.com/ansible/2.8/user_guide/playbooks_tests.html#version-comparison Change-Id: I21efa77fc743f9530d307dc06c8a345475d35dfa
This commit is contained in:
parent
028a25a43b
commit
3d2aed2c2d
@ -33,7 +33,7 @@ auditbeat.modules:
|
||||
# The auditd module collects events from the audit framework in the Linux
|
||||
# kernel. You need to specify audit rules for the events that you want to audit.
|
||||
- module: auditd
|
||||
{% if ansible_kernel is version_compare('4.4', '>=') %}
|
||||
{% if ansible_kernel is version('4.4', '>=') %}
|
||||
socket_type: {{ (apply_security_hardening | default(true) | bool) | ternary('multicast', 'unicast') }}
|
||||
{% endif %}
|
||||
resolve_ids: true
|
||||
|
@ -33,7 +33,7 @@ auditbeat.modules:
|
||||
# The auditd module collects events from the audit framework in the Linux
|
||||
# kernel. You need to specify audit rules for the events that you want to audit.
|
||||
- module: auditd
|
||||
{% if ansible_kernel is version_compare('4.4', '>=') %}
|
||||
{% if ansible_kernel is version('4.4', '>=') %}
|
||||
socket_type: {{ (apply_security_hardening | default(true) | bool) | ternary('multicast', 'unicast') }}
|
||||
{% endif %}
|
||||
resolve_ids: true
|
||||
|
Loading…
Reference in New Issue
Block a user