homeserver/roles/xanmanning.k3s/tasks/ensure_directories.yml
mg 135bd53414 k3s - Basics (#423)
Co-authored-by: Michael Grote <michael.grote@posteo.de>
Reviewed-on: #423
2022-11-04 20:58:37 +01:00

13 lines
306 B
YAML

---
- name: Ensure {{ directory.name }} exists
ansible.builtin.file:
path: "{{ directory.path }}"
state: directory
mode: "{{ directory.mode | default(755) }}"
become: "{{ k3s_become }}"
when:
- directory.path is defined
- directory.path | length > 0
- directory.path != omit