Attempt to fix another boolean.

This commit is contained in:
Andrea Dell'Amico 2024-08-02 12:59:11 +02:00
parent ce19b0da20
commit ca5d039f31
Signed by: adellam
GPG Key ID: 147ABE6CEB9E20FF
1 changed files with 2 additions and 1 deletions

View File

@ -8,7 +8,8 @@ tomcat_service_enabled: true
tomcat_use_systemd_unit_test: "{% if ansible_distribution_version is version_compare('18.04', '>=') %}true{% else %}false{% endif %}" tomcat_use_systemd_unit_test: "{% if ansible_distribution_version is version_compare('18.04', '>=') %}true{% else %}false{% endif %}"
tomcat_use_systemd_unit: '{{ tomcat_use_systemd_unit_test | bool }}' tomcat_use_systemd_unit: '{{ tomcat_use_systemd_unit_test | bool }}'
tomcat_systemd_security_enhanced: false tomcat_systemd_security_enhanced: false
tomcat_systemd_security: "{% if tomcat_systemd_security_enhanced %}true{% else %}false{% endif %}" tomcat_systemd_security_test: '{% if tomcat_systemd_security_enhanced %}true{% else %}false{% endif %}'
tomcat_systemd_security: '{{ tomcat_systemd_security_test | bool }}'
tomcat_pkgs: tomcat_pkgs:
- 'tomcat{{ tomcat_version }}' - 'tomcat{{ tomcat_version }}'