1
0
Fork 0
mirror of https://github.com/ansible-collections/community.mysql.git synced 2026-02-04 07:11:49 +00:00

Add query to find command between python and python3

This commit is contained in:
Laurent Indermuehle 2025-05-05 14:12:04 +02:00
parent 74ea0438ce
commit 172bb6ce4f
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09

View file

@ -42,8 +42,8 @@
- connector_name == 'mysqlclient'
- name: Get the python version in use
ansible.builtin.command:
cmd: python -V
ansible.builtin.shell:
cmd: echo $( $(command -v python || command -v python3) -V )
changed_when: false
failed_when: false
register: python_version_in_use
@ -52,7 +52,7 @@
ansible.builtin.debug:
msg: >
Python in use inside the test container:
${{ python_version_in_use }}
${{ python_version_in_use.stdout }}
when:
- python_version_in_use is defined