mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-07-27 23:21:27 -07:00
11 lines
293 B
YAML
11 lines
293 B
YAML
---
|
|
|
|
- name: "{{ role_name }} | Fake root | Ensure folder"
|
|
ansible.builtin.file:
|
|
path: "{{ playbook_dir }}/root"
|
|
state: directory
|
|
|
|
- name: "{{ role_name }} | Fake root | Ensure default file exists"
|
|
ansible.builtin.file:
|
|
path: "{{ playbook_dir }}/root/.my.cnf"
|
|
state: touch
|