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.
14 lines
368 B
14 lines
368 B
5 years ago
|
---
|
||
|
|
||
|
- 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
|