mash-playbook/roles/mash/playbook_base/tasks/setup_base_dir.yml

10 lines
251 B
YAML
Raw Normal View History

2023-03-15 09:58:12 +01:00
---
- 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 }}"