mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-10 15:23:27 +02:00
9 lines
281 B
YAML
9 lines
281 B
YAML
---
|
|
|
|
- name: Create needed directories
|
|
file: path={{ item.dir }} state=directory owner={{ item.owner | default(omit) }} group={{ item.group | default(omit) }} mode={{ item.mode | dedfault(omit) }}
|
|
loop:
|
|
- dir: "{{ wbo_root_dir }}"
|
|
owner: wbo_{{ wbo_id }}
|
|
tags: wbo
|