ansible/roles/docker/tasks/kuma.yml

12 lines
206 B
YAML
Raw Normal View History

---
- name: Create kuma-config directory
file:
path: "{{ item }}"
owner: "{{ puid }}"
group: "{{ pgid }}"
mode: '755'
state: directory
loop:
- "{{ kuma_config }}"
become: true