Ansible roles
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.
 
 
 
 
 
 

17 lines
584 B

---
- 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
tags: pgadmin4