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
452 B
14 lines
452 B
5 years ago
|
---
|
||
|
|
||
|
- name: Create directory structure
|
||
|
file: path={{ item.dir }} state=directory mode={{ item.mode | default(omit) }}
|
||
|
with_items:
|
||
|
- dir: "{{ dolibarr_root_dir }}"
|
||
|
- dir: "{{ dolibarr_root_dir }}/archives"
|
||
|
- dir: "{{ dolibarr_root_dir }}/tmp"
|
||
|
- dir: "{{ dolibarr_root_dir }}/sessions"
|
||
|
- dir: "{{ dolibarr_root_dir }}/meta"
|
||
|
- dir: "{{ dolibarr_root_dir }}/db_dumps"
|
||
|
- dir: "{{ dolibarr_root_dir }}/data"
|
||
|
tags: dolibarr
|