From 4f805ae80deb221507fd738a8f23fc7cd36fb1a4 Mon Sep 17 00:00:00 2001 From: Viyurz Date: Sat, 17 Feb 2024 19:09:25 +0100 Subject: [PATCH] Replace fake spaces by real ones. --- roles/synapse/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/synapse/tasks/main.yml b/roles/synapse/tasks/main.yml index f97dbb5..321c5cb 100644 --- a/roles/synapse/tasks/main.yml +++ b/roles/synapse/tasks/main.yml @@ -29,7 +29,7 @@ - name: "Create directory {{ volumes['synapse_datadir'] }} with correct permissions" file: - path: "{{ volumes['synapse_datadir'] }}" + path: "{{ volumes['synapse_datadir'] }}" state: directory owner: "{{ users['synapse'] + uid_shift }}" group: "{{ users['synapse'] + uid_shift }}" @@ -38,7 +38,7 @@ - name: "Create directory {{ volumes['synapse_postgres_datadir'] }} with correct permissions" file: - path: "{{ volumes['synapse_postgres_datadir'] }}" + path: "{{ volumes['synapse_postgres_datadir'] }}" state: directory owner: "{{ users['synapse_postgres'] + uid_shift }}" group: "{{ users['synapse_postgres'] + uid_shift }}"