mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-16 10:13:26 +02:00
14 lines
368 B
YAML
14 lines
368 B
YAML
---
|
|
|
|
- name: Create directory structure
|
|
file: path={{ item }} state=directory
|
|
with_items:
|
|
- "{{ kanboard_root_dir }}"
|
|
- "{{ kanboard_root_dir }}/web"
|
|
- "{{ kanboard_root_dir }}/tmp"
|
|
- "{{ kanboard_root_dir }}/sessions"
|
|
- "{{ kanboard_root_dir }}/data"
|
|
- "{{ kanboard_root_dir }}/cache"
|
|
- "{{ kanboard_root_dir }}/meta"
|
|
tags: kanboard
|