Revert changes made for ansible-devel that broke tests for Ansible 2.15

This commit is contained in:
Laurent Indermuehle 2024-06-10 19:48:13 +02:00
commit a90e904891
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09

View file

@ -3,7 +3,7 @@
command: "{{ mysql_command }} \"-e SHOW VARIABLES LIKE 'have_ssl';\""
register: result
- set_fact:
tls_enabled: "{{ 'YES' in result.stdout }}"
tls_enabled: "{{ 'YES' in result.stdout | bool | default('false', true) }}"
- vars:
mysql_parameters: &mysql_params