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.jenkins-master
parent
87843e5926
commit
d290eca833
|
@ -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.
|
||||
|
||||
mode = server
|
||||
|
|
Loading…
Reference in New Issue