roles/burp-server: switch to version_compare test
Ansible replaced the `version_compare` filter with a `version_compare` test that does the same thing. The former is completely gone now, causing the template to fail to render, so its usage of that filter needs to be updated.
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
{% set is_burp2 = burp_version|version_compare('2.0', '>=') %}
|
{% set is_burp2 = burp_version is version_compare('2.0', '>=') %}
|
||||||
# This is an example config file for the burp server.
|
# This is an example config file for the burp server.
|
||||||
|
|
||||||
mode = server
|
mode = server
|
||||||
|
|||||||
Reference in New Issue
Block a user