mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-07-27 07:01: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
|
||||
ignore_errors: yes
|
||||
|
||||
- debug: var=result
|
||||
|
||||
- set_fact:
|
||||
test1: result is succeeded
|
||||
test2: 'pymysql >= 0.7.11 is required' in result.msg
|
||||
test1: "{{ result is succeeded }}"
|
||||
test2: "{{ 'pymysql >= 0.7.11 is required' in result.msg }}"
|
||||
|
||||
- debug: var=result
|
||||
- debug: var=test1
|
||||
- debug: var=test2
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue