mirror of
https://github.com/batonogov/learn-devops.git
synced 2026-03-02 08:10:56 +00:00
9 lines
206 B
YAML
9 lines
206 B
YAML
---
|
|
- name: Create a directory if it does not exist
|
|
ansible.builtin.file:
|
|
path: /var/lib/minio
|
|
state: directory
|
|
owner: "{{ minio_username }}"
|
|
group: "{{ minio_username }}"
|
|
mode: "755"
|