You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
334 B
12 lines
334 B
4 years ago
|
---
|
||
|
|
||
|
- name: Create directory structure
|
||
|
file: path={{ element_root_dir }}/{{ item.dir }} state=directory owner={{ item.owner | default(omit) }} group={{ item.group | default(omit) }} mode={{ item.mode | default(omit) }}
|
||
|
with_items:
|
||
|
- dir: tmp
|
||
|
- dir: archives
|
||
|
mode: 700
|
||
|
- dir: meta
|
||
|
mode: 700
|
||
|
tags: matrix
|