mirror of
https://github.com/PyratLabs/ansible-role-k3s
synced 2024-12-13 14:30:17 +01:00
7e4a16e167
- Restructured when and asserts - Standardise molecule call, add systemd config
12 lines
373 B
YAML
12 lines
373 B
YAML
---
|
|
|
|
- name: Ensure {{ directory.name }} exists
|
|
ansible.builtin.file:
|
|
path: "{{ directory.path }}"
|
|
state: directory
|
|
mode: "{{ directory.mode | default(0755) }}"
|
|
become: "{{ k3s_become_for_directory_creation | ternary(true, false, k3s_become_for_all) }}"
|
|
when:
|
|
- directory.path is defined
|
|
- directory.path | length > 0
|
|
- directory.path != omit
|