mash-playbook/roles/mash/playbook_base/tasks/setup_base_dir.yml
2023-03-15 10:58:12 +02:00

9 lines
251 B
YAML

---
- name: Ensure mash base paths exists
ansible.builtin.file:
path: "{{ mash_playbook_base_path }}"
state: directory
mode: "{{ mash_playbook_base_path_mode }}"
owner: "{{ mash_playbook_uid }}"
group: "{{ mash_playbook_gid }}"