From 4dfaf3395d02151e3ae1b1034e663625dbdc1dbb Mon Sep 17 00:00:00 2001 From: erebion Date: Tue, 5 Sep 2023 12:08:37 +0200 Subject: [PATCH] Owner of the Postgres Dir should also be 999, not root. Might work as root, but this way is known to work. --- roles/docker_pretix/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/docker_pretix/tasks/main.yml b/roles/docker_pretix/tasks/main.yml index 5bf594c..fbc1c69 100644 --- a/roles/docker_pretix/tasks/main.yml +++ b/roles/docker_pretix/tasks/main.yml @@ -35,7 +35,7 @@ path: "{{ item }}" state: directory owner: 999 - group: root + group: 999 mode: '0700' with_items: - "{{ docker_volumes_dir }}/pretix/postgres-db"