Attempt to fix another boolean.
This commit is contained in:
parent
ce19b0da20
commit
ca5d039f31
|
@ -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: '{{ tomcat_use_systemd_unit_test | bool }}'
|
||||
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{{ tomcat_version }}'
|
||||
|
|
Loading…
Reference in New Issue