mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 02:00:31 -07:00
* Display a more informative error when InvalidPrivsError is raised (Issue #465) Co-authored-by: Laurent Indermühle <laurent.indermuehle@pm.me>
19 lines
644 B
YAML
19 lines
644 B
YAML
####################################################################
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
####################################################################
|
|
|
|
- name: make sure we have the ansible_os_family and ansible_distribution_version facts
|
|
setup:
|
|
gather_subset: distribution
|
|
when: ansible_facts == {}
|
|
tags:
|
|
- setup_remote_tmp_dir
|
|
|
|
- include_tasks: "{{ lookup('first_found', files)}}"
|
|
vars:
|
|
files:
|
|
- "{{ ansible_os_family | lower }}.yml"
|
|
- "default.yml"
|
|
tags:
|
|
- setup_remote_tmp_dir
|