mirror of
https://github.com/batonogov/learn-devops.git
synced 2025-12-03 18:53:01 +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"
|