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
414 B
14 lines
414 B
---
|
|
|
|
- name: Create directory structure
|
|
file: path={{ item.dir }} state=directory mode={{ item.mode | default(omit) }}
|
|
loop:
|
|
- dir: "{{ pma_root_dir }}"
|
|
- dir: "{{ pma_root_dir }}/web"
|
|
- dir: "{{ pma_root_dir }}/tmp"
|
|
- dir: "{{ pma_root_dir }}/sessions"
|
|
- dir: "{{ pma_root_dir }}/cache"
|
|
- dir: "{{ pma_root_dir }}/meta"
|
|
mode: 700
|
|
- dir: "{{ pma_root_dir }}/data"
|
|
tags: pma
|
|
|