ansible-roles/roles/pgadmin4/tasks/directories.yml
2021-12-01 19:13:34 +01:00

20 lines
640 B
YAML

---
- name: Create directories
file: path={{ item.path }} state=directory owner={{ item.owner | default(omit) }} group={{ item.group | default(omit) }} mode={{ item.mode | default(omit) }}
with_items:
- path: "{{ pga_root_dir }}"
owner: pgadmin4_{{ pga_id }}
mode: 700
- path: "{{ pga_root_dir }}/sessions"
owner: pgadmin4_{{ pga_id }}
- path: "{{ pga_root_dir }}/data"
owner: pgadmin4_{{ pga_id }}
- path: "{{ pga_root_dir }}/logs"
owner: pgadmin4_{{ pga_id }}
- path: "{{ pga_root_dir }}/meta"
mode: 700
- path: "{{ pga_root_dir }}/backup"
mode: 700
tags: pgadmin4