Explorar el Código

Ensure Postgres data ownership is correct

Fixes #257 (Github Issue)
pull/247/head
Slavi Pantaleev hace 6 años
padre
commit
1784bde226
Se han modificado 1 ficheros con 12 adiciones y 0 borrados
  1. +12
    -0
      roles/matrix-postgres/tasks/setup_postgres.yml

+ 12
- 0
roles/matrix-postgres/tasks/setup_postgres.yml Ver fichero

@@ -44,6 +44,18 @@
- "{{ matrix_postgres_data_path }}"
when: matrix_postgres_enabled|bool

# We do this as a separate task, because:
# - we'd like to do it for the data path only, not for the base path (which contains root-owned environment variable files we'd like to leave as-is)
# - we need to do it without `mode`, or we risk making certain `.conf` and other files's executable bit to flip to true
- name: Ensure Postgres data path ownership is correct
file:
path: "{{ matrix_postgres_data_path }}"
state: directory
owner: "{{ matrix_user_username }}"
group: "{{ matrix_user_username }}"
recurse: yes
when: matrix_postgres_enabled|bool

- name: Ensure Postgres environment variables file created
template:
src: "{{ role_path }}/templates/{{ item }}.j2"


Cargando…
Cancelar
Guardar