mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-07-27 23:21:27 -07:00
Fix debug message
This commit is contained in:
parent
602687e7b1
commit
7d3dc58236
1 changed files with 3 additions and 4 deletions
|
@ -64,12 +64,11 @@
|
||||||
register: result
|
register: result
|
||||||
ignore_errors: yes
|
ignore_errors: yes
|
||||||
|
|
||||||
- debug: var=result
|
|
||||||
|
|
||||||
- set_fact:
|
- set_fact:
|
||||||
test1: result is succeeded
|
test1: "{{ result is succeeded }}"
|
||||||
test2: 'pymysql >= 0.7.11 is required' in result.msg
|
test2: "{{ 'pymysql >= 0.7.11 is required' in result.msg }}"
|
||||||
|
|
||||||
|
- debug: var=result
|
||||||
- debug: var=test1
|
- debug: var=test1
|
||||||
- debug: var=test2
|
- debug: var=test2
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue