mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-08-21 05:21:46 -07:00
Fix ansible devel Unexpected templating type error could not convert to boolean
This commit is contained in:
parent
29a54d5fdc
commit
16d530348d
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
|||
command: "{{ mysql_command }} \"-e SHOW VARIABLES LIKE 'have_ssl';\""
|
||||
register: result
|
||||
- set_fact:
|
||||
tls_enabled: "{{ 'YES' in result.stdout | bool | default('false', true) }}"
|
||||
tls_enabled: "{{ 'YES' in result.stdout }}"
|
||||
|
||||
- vars:
|
||||
mysql_parameters: &mysql_params
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue