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
348 B
12 lines
348 B
---
|
|
|
|
- name: Create directory structure
|
|
file: path={{ synadm_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
|
|
- dir: web
|
|
tags: matrix
|
|
|