mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-27 21:01:28 -07:00
Fix trailing newline and quote in db_engine_version
This commit is contained in:
parent
a0a0493a0a
commit
192680888c
1 changed files with 9 additions and 8 deletions
|
@ -8,16 +8,16 @@
|
||||||
- name: "{{ role_name }} | Setvars | Set Fact"
|
- name: "{{ role_name }} | Setvars | Set Fact"
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
gateway_addr: "{{ ip_route_output.stdout }}"
|
gateway_addr: "{{ ip_route_output.stdout }}"
|
||||||
connector_name: >
|
connector_name: >-
|
||||||
{{ lookup(
|
{{ lookup(
|
||||||
'file',
|
'file',
|
||||||
'/root/ansible_collections/community/mysql/tests/integration/connector'
|
'/root/ansible_collections/community/mysql/tests/integration/connector'
|
||||||
) }}
|
) }}
|
||||||
db_engine_version: >
|
db_engine_version: >-
|
||||||
{{ lookup(
|
{{ lookup(
|
||||||
'file',
|
'file',
|
||||||
'/root/ansible_collections/community/mysql/tests/integration/db_engine_version'
|
'/root/ansible_collections/community/mysql/tests/integration/db_engine_version'
|
||||||
) }}"
|
) }}
|
||||||
|
|
||||||
- name: "{{ role_name }} | Setvars | Set Fact using above facts"
|
- name: "{{ role_name }} | Setvars | Set Fact using above facts"
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
|
@ -39,9 +39,10 @@
|
||||||
--protocol=tcp
|
--protocol=tcp
|
||||||
|
|
||||||
- name: "{{ role_name }} | Setvars | Output test informations"
|
- name: "{{ role_name }} | Setvars | Output test informations"
|
||||||
ansible.builtin.debug:
|
vars:
|
||||||
msg: >
|
msg: |-
|
||||||
Connector name: {{ connector_name }},
|
connector_name: {{ connector_name }}
|
||||||
Connector version: {{ connector_ver }},
|
db_engine: {{ db_engine }}
|
||||||
db_engine: {{ db_engine }},
|
|
||||||
db_version: {{ db_version }}
|
db_version: {{ db_version }}
|
||||||
|
ansible.builtin.debug:
|
||||||
|
msg: "{{ msg.split('\n') }}"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue